代码搜索:Pthread

找到约 7,828 项符合「Pthread」的源代码

代码结果 7,828
www.eeworm.com/read/128880/14273946

c pthread_rwlock_wrlock.c

/* include wrlock */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_wrlock(pthread_rwlock_t *rw) { int result; if (rw->rw_magic != RW_MAGIC) return(EINVAL); if ( (result =
www.eeworm.com/read/128880/14273951

c pthread_rwlock_trywrlock.c

/* include trywrlock */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_trywrlock(pthread_rwlock_t *rw) { int result; if (rw->rw_magic != RW_MAGIC) return(EINVAL); if ( (re
www.eeworm.com/read/128880/14273953

c pthread_rwlock_rdlock.c

/* include rdlock */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_rdlock(pthread_rwlock_t *rw) { int result; if (rw->rw_magic != RW_MAGIC) return(EINVAL); if ( (result =
www.eeworm.com/read/128880/14273955

c pthread_rwlock_init.c

/* include init */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_init(pthread_rwlock_t *rw, pthread_rwlockattr_t *attr) { int result; if (attr != NULL) return(EINVAL); /*
www.eeworm.com/read/128880/14273958

c pthread_rwlock_tryrdlock.c

/* include tryrdlock */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_tryrdlock(pthread_rwlock_t *rw) { int result; if (rw->rw_magic != RW_MAGIC) return(EINVAL); if ( (re
www.eeworm.com/read/128880/14273962

c pthread_rwlock_destroy.c

/* include destroy */ #include "unpipc.h" #include "pthread_rwlock.h" int pthread_rwlock_destroy(pthread_rwlock_t *rw) { if (rw->rw_magic != RW_MAGIC) return(EINVAL); if (rw->rw_refcount != 0 ||
www.eeworm.com/read/223685/14619259

txt pthread_attr_getstackaddr.txt

-------------------------------------------------------------------------------- AIX Version 4.3 Base Operating System and Extensions Technical Reference, Volume
www.eeworm.com/read/223685/14619269

txt pthread_mutex_getprioceiling.txt

pthread_mutex_getprioceiling Subroutine Purpose Returns the current value of the prioceiling attribute of a mutex. Library Threads Library (libpthreads.a) Syntax #include int pthr
www.eeworm.com/read/223685/14619275

txt pthread_attr_getschedparam.txt

-------------------------------------------------------------------------------- AIX Version 4.3 Base Operating System and Extensions Technical Reference, Volume
www.eeworm.com/read/223685/14619281

txt pthread_cleanup_push.txt

pthread_cleanup_push Subroutine Purpose Pushes a routine onto the calling thread's cleanup stack. Library Threads Library (libpthreads.a) Syntax #include void pthread_cleanup_push