HomeSort by relevance Sort by last modified time
    Searched defs:pthread_create (Results 1 - 4 of 4) sorted by null

  /onnv/onnv-gate/usr/src/lib/libc/port/threads/
pthread.c 85 * pthread_create: creates a thread in the current process.
88 #pragma weak _pthread_create = pthread_create
90 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function
120 * The SUSv3 specification requires pthread_create()
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/support/
threads.c 120 # pragma weak pthread_create macro
150 || &pthread_create == 0
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
thread.h 47 # define pthread_create(t,a,s,d) pthread_create(t,&(a),s,d) macro
53 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
62 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,a,s,d)
79 #ifndef PTHREAD_CREATE
80 /* You are not supposed to pass NULL as the 2nd arg of PTHREAD_CREATE(). */
81 # define PTHREAD_CREATE(t,a,s,d) pthread_create(t,&(a),s,d
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtnfprobe/
probe_cntl.c 289 pthread_create(pthread_t *new_thread_id, function
298 fprintf(stderr, "hello from the interposed pthread_create parent\n");
301 /* use dlsym to find the address of the "real" pthread_create func */
304 dlsym(RTLD_NEXT, "pthread_create");
317 } /* end pthread_create */
323 /* use dlsym to find the address of the "real" pthread_create func */
379 /* use dlsym to find the address of the "real" pthread_create func */
532 * interposed thr_create() and pthread_create(). It calls the real start

Completed in 120 milliseconds