[BACK]Return to pthread_cond.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libpthread

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libpthread/pthread_cond.c between version 1.1.2.15 and 1.1.2.16

version 1.1.2.15, 2002/12/16 18:24:14 version 1.1.2.16, 2003/01/08 19:34:22
Line 53 
Line 53 
   
 static void pthread_cond_wait__callback(void *);  static void pthread_cond_wait__callback(void *);
   
   __strong_alias(__libc_cond_init,pthread_cond_init);
   __strong_alias(__libc_cond_signal,pthread_cond_signal);
   __strong_alias(__libc_cond_broadcast,pthread_cond_broadcast);
   __strong_alias(__libc_cond_wait,pthread_cond_wait);
   __strong_alias(__libc_cond_timedwait,pthread_cond_timedwait);
   __strong_alias(__libc_cond_destroy,pthread_cond_destroy);
   
 int  int
 pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)  pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
 {  {

Legend:
Removed from v.1.1.2.15  
changed lines
  Added in v.1.1.2.16

CVSweb <webmaster@jp.NetBSD.org>