Open System Services Porting Guide (G06.24+, H06.03+)

Table Of Contents
Standard POSIX Threads Functions: Differences
Between the Previous and Current Standards
Open System Services Porting Guide520573-006
E-15
Changed Thread Functions
Table E-9 lists the old and new syntax of the optional functions that are supported by
Standard POSIX Threads. The _np suffix indicates that the function is not portable.
T1248 POSIX threads, released with G06.21 RVU, made obsolete APIs with the prefix
cma_, such as cma_accept. Some replacement APIs released with T1248 have the
prefix spt_; such as, spt_accept. Others use standard names for the replacement
I/O functions; for example, the function bind() replaces cma_bind(). Table E-10
lists the obsolete and replacement APIs supported in T1248 POSIX threads, G06.21
RVU. Each of the replacment APIs is documented in its appropriate reference page.
Table E-9. Optional Thread Functions Supported in Standard POSIX Threads
Syntax of Draft 4 Function Syntax of Standard POSIX Threads Function
unsigned long
pthread_attr_getguardsize_np(
pthread_attr_t attr);
int pthread_attr_getguardsize_np(
const pthread_attr_t *attr,
size_t *guardsize);
unsigned long
pthread_attr_setguardsize_np(
pthread_attr_t attr,
long guardsize);
int pthread_attr_setguardsize_np(
pthread_attr_t attr,
size_t guardsize);
void
pthread_lock_global_np();
int pthread_lock_global_np (void);
void pthread_unlock_global_
np();
int pthread_unlock_global_np (void);
Table E-10. Obsolete and Replacement APIs in T1248 POSIX
Threads (page1of3)
Obsolete API Replacment API
cma_accept()
spt_accept()
cma_connect()
spt_connect()
cma_fclose()
spt_fclose()
cma_fflush()
spt_fflush()
cma_fgetc()
spt_fgetc()
cma_fgets()
spt_fgets()
cma_fprintf()
spt_fprintf()
cma_fputc()
spt_fputc()
cma_fputs()
spt_fputs()
cma_fread()
spt_fread()
cma_fwrite()
spt_fwrite()