mevans
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:19k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. =A0
  2. Attached are several patches for pthreads-1_60_beta6.  The patches fall
  3. into 3 catagories:
  4.   1. Crashes and hangs.
  5.   2. Missing functionality (namely flock())
  6.   3. Use of POSIX reentrant safe routines.
  7. Most of the patches contain a comment as to why the change was made.
  8. The one major exception is to fd_kern.c at line 257 (unpatched).  The
  9. change to that line is to fix a "hang" that prevents threads for
  10. scheduling for an hour if there is no external I/O event.
  11. I also include patches that modify several functions to use POSIX
  12. reentrant safe routines.  I know that MIT pthreads implements routine
  13. like gethostbyname in a thread safe manner, but we're pretty, um, anal
  14. about trying to keep our code as portable as possible.  By excluding
  15. using routines that are not reentrant safe according to the PTHREAD
  16. safe, it's easy for us to stub out the unsafe routines and catch
  17. non-compliant code.  I almost left these patches out, but I'm hoping
  18. they'll be adopted.  :-)
  19. WARNING:  None of the MIT pthreads routines that convert floats/doubles
  20. between their native forms and strings are thread safe!  (i.e printf,
  21. sprintf, fprintf, atod, strtod, etc)  I have replacements, but I need to
  22. check with the author of the replacements and my employer.
  23. Mark Evans
  24. ------------69CDAAF52A3566916F8ED01A0
  25. Content-Disposition: inline; filename="pthreads-1_60_beta6.patch"
  26. Content-Type: text/plain; charset=us-ascii; name="pthreads-1_60_beta6.patch"
  27. Content-Transfer-Encoding: 7bit
  28. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/config/config.h.in pthreads-1_60_beta6+/config/config.h.in
  29. *** pthreads-1_60_beta6/config/config.h.in Thu Mar 21 21:30:04 1996
  30. --- pthreads-1_60_beta6+/config/config.h.in Sat Mar 15 14:08:55 1997
  31. ***************
  32. *** 137,142 ****
  33. --- 137,145 ----
  34.   /* Define if you have the syscall_ftruncate function.  */
  35.   #undef HAVE_SYSCALL_FTRUNCATE
  36.   
  37. + /* Define if you have the syscall_flock function.  */
  38. + #undef HAVE_SYSCALL_FLOCK
  39.   /* Define if you have the syscall_getdents function.  */
  40.   #undef HAVE_SYSCALL_GETDENTS
  41.   
  42. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/config/configure.in pthreads-1_60_beta6+/config/configure.in
  43. *** pthreads-1_60_beta6/config/configure.in Wed Nov 13 14:03:08 1996
  44. --- pthreads-1_60_beta6+/config/configure.in Sat Mar 15 14:08:55 1997
  45. ***************
  46. *** 241,247 ****
  47.   
  48.   PTHREADS_CHECK_SYSCALLS(open write read creat close fcntl lseek dup2 dup pipe
  49.    fchmod fchown execve fstat lstat link unlink chdir chown chmod stat
  50. !  rename select getdtablesize ioctl ftruncate
  51.    dnl - signals
  52.    sigsuspend sigaction sigpause sigprocmask ksigaction
  53.    dnl - directory reading
  54. --- 241,247 ----
  55.   
  56.   PTHREADS_CHECK_SYSCALLS(open write read creat close fcntl lseek dup2 dup pipe
  57.    fchmod fchown execve fstat lstat link unlink chdir chown chmod stat
  58. !  rename select getdtablesize ioctl ftruncate flock
  59.    dnl - signals
  60.    sigsuspend sigaction sigpause sigprocmask ksigaction
  61.    dnl - directory reading
  62. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/gen/directory.c pthreads-1_60_beta6+/gen/directory.c
  63. *** pthreads-1_60_beta6/gen/directory.c Sat May 20 10:55:34 1995
  64. --- pthreads-1_60_beta6+/gen/directory.c Sat Mar 15 14:08:55 1997
  65. ***************
  66. *** 251,262 ****
  67. --- 251,266 ----
  68.   /*
  69.    * Seek to an entry in a directory.
  70.    * _seekdir is in telldir.c so that it can share opaque data structures.
  71. +  *
  72. +  * Use the POSIX reentrant safe readdir_r to simplify varifying POSIX
  73. +  * thread-safe compliance.
  74.    */
  75.   void seekdir(DIR * dirp, long loc)
  76.   {
  77.    register struct ddloc ** prevlp;
  78.    register struct ddloc * lp;
  79.    struct dirent * dp;
  80. +  struct dirent   de;
  81.   
  82.    pthread_mutex_lock (dirp->dd_lock);
  83.    prevlp = (struct ddloc **)&(dirp->dd_ddloc);
  84. ***************
  85. *** 277,283 ****
  86.    dirp->dd_seek = lp->loc_seek;
  87.    dirp->dd_loc = 0;
  88.    while (dirp->dd_loc < lp->loc_loc) {
  89. !  if (!(dp = readdir(dirp))) {
  90.    *prevlp = lp->loc_next;
  91.    break;
  92.    }
  93. --- 281,287 ----
  94.    dirp->dd_seek = lp->loc_seek;
  95.    dirp->dd_loc = 0;
  96.    while (dirp->dd_loc < lp->loc_loc) {
  97. !  if (readdir_r(dirp, &de, &dp)) {
  98.    *prevlp = lp->loc_next;
  99.    break;
  100.    }
  101. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/gen/getcwd.c pthreads-1_60_beta6+/gen/getcwd.c
  102. *** pthreads-1_60_beta6/gen/getcwd.c Sat Sep  2 17:39:30 1995
  103. --- pthreads-1_60_beta6+/gen/getcwd.c Sat Mar 15 14:08:55 1997
  104. ***************
  105. *** 50,67 ****
  106.    (dp->d_name[0] == '.' && (dp->d_name[1] == '' || 
  107.        dp->d_name[1] == '.' && dp->d_name[2] == ''))
  108.   
  109.   char *
  110.   getcwd(pt, size)
  111.    char *pt;
  112.    size_t size;
  113.   {
  114. -  register struct dirent *dp;
  115.    register DIR *dir;
  116.    register dev_t dev;
  117.    register ino_t ino;
  118.    register int first;
  119.    register char *bpt, *bup;
  120.    struct stat s;
  121.    dev_t root_dev;
  122.    ino_t root_ino;
  123.    size_t ptsize, upsize;
  124. --- 50,71 ----
  125.    (dp->d_name[0] == '.' && (dp->d_name[1] == '' || 
  126.        dp->d_name[1] == '.' && dp->d_name[2] == ''))
  127.   
  128. + /* Only use reentrant safe routines to simplify varifying POSIX thread-safe
  129. +  * compliance. (mevans).
  130. +  */
  131.   char *
  132.   getcwd(pt, size)
  133.    char *pt;
  134.    size_t size;
  135.   {
  136.    register DIR *dir;
  137.    register dev_t dev;
  138.    register ino_t ino;
  139.    register int first;
  140.    register char *bpt, *bup;
  141.    struct stat s;
  142. +  struct dirent *dp;
  143. +  struct dirent  de;
  144.    dev_t root_dev;
  145.    ino_t root_ino;
  146.    size_t ptsize, upsize;
  147. ***************
  148. *** 166,179 ****
  149.    save_errno = 0;
  150.    if (s.st_dev == dev) {
  151.    for (;;) {
  152. !  if (!(dp = readdir(dir)))
  153.    goto notfound;
  154.    if (dp->d_fileno == ino)
  155.    break;
  156.    }
  157.    } else
  158.    for (;;) {
  159. !  if (!(dp = readdir(dir)))
  160.    goto notfound;
  161.    if (ISDOT(dp))
  162.    continue;
  163. --- 170,183 ----
  164.    save_errno = 0;
  165.    if (s.st_dev == dev) {
  166.    for (;;) {
  167. !  if (readdir_r(dir, &de, &dp))
  168.    goto notfound;
  169.    if (dp->d_fileno == ino)
  170.    break;
  171.    }
  172.    } else
  173.    for (;;) {
  174. !  if (readdir_r(dir, &de, &dp))
  175.    goto notfound;
  176.    if (ISDOT(dp))
  177.    continue;
  178. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/include/syslog.h pthreads-1_60_beta6+/include/syslog.h
  179. *** pthreads-1_60_beta6/include/syslog.h Mon Sep 26 21:26:29 1994
  180. --- pthreads-1_60_beta6+/include/syslog.h Sat Mar 15 14:08:56 1997
  181. ***************
  182. *** 9,14 ****
  183. --- 9,16 ----
  184.   #ifndef SYSLOG_H
  185.   #define SYSLOG_H
  186.   
  187. + /* Added __[BEGIN/END]_DECLS so this file would work with C++. (mevans) */
  188. + #include <sys/cdefs.h>
  189.   #include <stdarg.h>
  190.   
  191.   /* Discipline: openlog(), closelog(), and setlogmask() are not thread-safe
  192. ***************
  193. *** 84,95 ****
  194. --- 86,101 ----
  195.   #define LOG_NDELAY 0x08 /* don't delay open */
  196.   #define LOG_NOWAIT 0x10 /* if forking to log on console, don't wait() */
  197.   
  198. + __BEGIN_DECLS
  199.   /* Syslogging functions. */
  200.   void syslog(int pri, char *fmt, ...);
  201.   void vsyslog(int pri, char *fmt, va_list args);
  202.   void openlog(char *ident, int logstat, int logfac);
  203.   void closelog(void);
  204.   int setlogmask(int pmask);
  205. + __END_DECLS
  206.   
  207.   #endif
  208.   
  209. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/machdep/engine-i386-linux-1.0.c pthreads-1_60_beta6+/machdep/engine-i386-linux-1.0.c
  210. *** pthreads-1_60_beta6/machdep/engine-i386-linux-1.0.c Mon Oct 21 20:39:13 1996
  211. --- pthreads-1_60_beta6+/machdep/engine-i386-linux-1.0.c Sat Mar 15 14:08:56 1997
  212. ***************
  213. *** 142,147 ****
  214. --- 142,149 ----
  215.        * machdep_pthread_start().
  216.        */
  217.       machdep_pthread->machdep_state->__pc = (char *)machdep_pthread_start;
  218. +     machdep_pthread->machdep_state->__bp = (char *)0;/* So the backtrace
  219. +                                                       * is sensible (mevans) */
  220.   
  221.       /* Stack starts high and builds down. */
  222.       machdep_pthread->machdep_state->__sp =
  223. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/machdep/syscall-i386-linux-1.0.S pthreads-1_60_beta6+/machdep/syscall-i386-linux-1.0.S
  224. *** pthreads-1_60_beta6/machdep/syscall-i386-linux-1.0.S Mon Oct 21 22:17:32 1996
  225. --- pthreads-1_60_beta6+/machdep/syscall-i386-linux-1.0.S Sat Mar 15 14:08:56 1997
  226. ***************
  227. *** 148,156 ****
  228.   /* =========================================================================
  229.    * exit  1 select  82
  230.    * fork  2 socketcall 102
  231. !  * read  3 readv 145
  232. !  * write  4 writev 146
  233. !  * open  5
  234.    * creat  8
  235.    * link  9
  236.    * unlink 10
  237. --- 148,156 ----
  238.   /* =========================================================================
  239.    * exit  1 select  82
  240.    * fork  2 socketcall 102
  241. !  * read  3 flock 143
  242. !  * write  4 readv 145
  243. !  * open  5 writev 146
  244.    * creat  8
  245.    * link  9
  246.    * unlink 10
  247. ***************
  248. *** 390,394 ****
  249. --- 390,401 ----
  250.    */
  251.   #ifdef HAVE_SYSCALL_WRITEV 
  252.   SYSCALL3(writev)
  253. + #endif
  254. + /* ==========================================================================
  255. +  * machdep_sys_flock()
  256. +  */
  257. + #ifdef HAVE_SYSCALL_FLOCK
  258. + SYSCALL2(flock)
  259.   #endif
  260.   
  261. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/net/gethostbyname.c pthreads-1_60_beta6+/net/gethostbyname.c
  262. *** pthreads-1_60_beta6/net/gethostbyname.c Mon Apr 22 22:41:21 1996
  263. --- pthreads-1_60_beta6+/net/gethostbyname.c Sat Mar 15 14:08:58 1997
  264. ***************
  265. *** 146,161 ****
  266.   {
  267.    char **alias;
  268.    FILE *fp = NULL;
  269.   
  270.    pthread_mutex_lock(&host_iterate_lock);
  271.    sethostent(0);
  272. !  while ((result = gethostent_r(result, buf, bufsize, errval)) != NULL) {
  273.    /* Check the entry's name and aliases against the given name. */
  274.    if (strcasecmp(result->h_name, name) == 0)
  275.    break;
  276.    for (alias = result->h_aliases; *alias; alias++) {
  277. !  if (strcasecmp(*alias, name) == 0)
  278.    break;
  279.    }
  280.    }
  281.    pthread_mutex_unlock(&host_iterate_lock);
  282. --- 146,166 ----
  283.   {
  284.    char **alias;
  285.    FILE *fp = NULL;
  286. +  int fFound = FALSE;
  287.   
  288.    pthread_mutex_lock(&host_iterate_lock);
  289.    sethostent(0);
  290. !  while (!fFound && (result = gethostent_r(result, buf, bufsize, errval))
  291. !  != NULL) {
  292.    /* Check the entry's name and aliases against the given name. */
  293.    if (strcasecmp(result->h_name, name) == 0)
  294.    break;
  295.    for (alias = result->h_aliases; *alias; alias++) {
  296. !  if (strcasecmp(*alias, name) == 0) {
  297. !  /* fFound will exit while loop. (mevans). */
  298. !  fFound = TRUE;
  299.    break;
  300. +  }
  301.    }
  302.    }
  303.    pthread_mutex_unlock(&host_iterate_lock);
  304. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/net/res_debug.c pthreads-1_60_beta6+/net/res_debug.c
  305. *** pthreads-1_60_beta6/net/res_debug.c Thu Feb 23 22:42:35 1995
  306. --- pthreads-1_60_beta6+/net/res_debug.c Sat Mar 15 14:08:58 1997
  307. ***************
  308. *** 375,380 ****
  309. --- 375,383 ----
  310.   
  311.   /*
  312.    * Print resource record fields in human readable form.
  313. +  *
  314. +  * Removed calls to non-reentrant routines to simplify varifying
  315. +  * POSIX thread-safe implementations. (mevans).
  316.    */
  317.   char *
  318.   p_rr(cp, msg, file)
  319. ***************
  320. *** 386,391 ****
  321. --- 389,395 ----
  322.    char *cp1, *cp2;
  323.    u_long tmpttl, t;
  324.    int lcnt;
  325. +  char buf[32];
  326.   
  327.    if ((cp = p_fqname(cp, msg, file)) == NULL)
  328.    return (NULL); /* compression error */
  329. ***************
  330. *** 413,426 ****
  331.    case C_HS:
  332.    bcopy(cp, (char *)&inaddr, sizeof(inaddr));
  333.    if (dlen == 4) {
  334. !  fprintf(file,"t%s", inet_ntoa(inaddr));
  335.    cp += dlen;
  336.    } else if (dlen == 7) {
  337.    char *address;
  338.    u_char protocol;
  339.    u_short port;
  340.   
  341. !  address = inet_ntoa(inaddr);
  342.    cp += sizeof(inaddr);
  343.    protocol = *(u_char*)cp;
  344.    cp += sizeof(u_char);
  345. --- 417,432 ----
  346.    case C_HS:
  347.    bcopy(cp, (char *)&inaddr, sizeof(inaddr));
  348.    if (dlen == 4) {
  349. !  fprintf(file,"t%s",
  350. !  inet_ntoa_r(inaddr, buf, sizeof(buf)));
  351.    cp += dlen;
  352.    } else if (dlen == 7) {
  353.    char *address;
  354.    u_char protocol;
  355.    u_short port;
  356.   
  357. !  address = inet_ntoa_r(inaddr,
  358. !  buf, sizeof(buf));
  359.    cp += sizeof(inaddr);
  360.    protocol = *(u_char*)cp;
  361.    cp += sizeof(u_char);
  362. ***************
  363. *** 524,530 ****
  364.    bcopy(cp, (char *)&inaddr, sizeof(inaddr));
  365.    cp += sizeof(u_long);
  366.    fprintf(file, "t%s %s ( ",
  367. !  inet_ntoa(inaddr),
  368.    deproto((int) *cp));
  369.    cp += sizeof(u_char);
  370.    n = 0;
  371. --- 530,536 ----
  372.    bcopy(cp, (char *)&inaddr, sizeof(inaddr));
  373.    cp += sizeof(u_long);
  374.    fprintf(file, "t%s %s ( ",
  375. !  inet_ntoa_r(inaddr, buf, sizeof(buf)),
  376.    deproto((int) *cp));
  377.    cp += sizeof(u_char);
  378.    n = 0;
  379. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/pthreads/fd_kern.c pthreads-1_60_beta6+/pthreads/fd_kern.c
  380. *** pthreads-1_60_beta6/pthreads/fd_kern.c Tue Oct  1 12:26:48 1996
  381. --- pthreads-1_60_beta6+/pthreads/fd_kern.c Sat Mar 15 14:09:00 1997
  382. ***************
  383. *** 215,221 ****
  384.    * Called when there is no active thread to run.
  385.    */
  386.   extern struct timeval __fd_kern_wait_timeout;
  387.   void fd_kern_wait()
  388.   {
  389.    fd_set fd_set_read, fd_set_write, fd_set_except;
  390. --- 215,221 ----
  391.    * Called when there is no active thread to run.
  392.    */
  393.   extern struct timeval __fd_kern_wait_timeout;
  394. ! extern volatile sig_atomic_t sig_to_process;
  395.   void fd_kern_wait()
  396.   {
  397.    fd_set fd_set_read, fd_set_write, fd_set_except;
  398. ***************
  399. *** 254,260 ****
  400.   
  401.    machdep_unset_thread_timer(NULL); 
  402.    __fd_kern_wait_timeout.tv_usec = 0;
  403. !  __fd_kern_wait_timeout.tv_sec = 3600;
  404.   
  405.    machdep_sys_sigprocmask(SIG_UNBLOCK, &sig_to_block, &oset);
  406.   
  407. --- 254,260 ----
  408.   
  409.    machdep_unset_thread_timer(NULL); 
  410.    __fd_kern_wait_timeout.tv_usec = 0;
  411. !  __fd_kern_wait_timeout.tv_sec = (sig_to_process) ? 0 : 3600;
  412.   
  413.    machdep_sys_sigprocmask(SIG_UNBLOCK, &sig_to_block, &oset);
  414.   
  415. ***************
  416. *** 726,731 ****
  417. --- 726,753 ----
  418.    return(ret);
  419.   }
  420.   
  421. + #if defined (HAVE_SYSCALL_FLOCK)
  422. + /* ==========================================================================
  423. +  * flock()
  424. +  *
  425. +  *  Added (mevans)
  426. +  */
  427. + int flock(int fd, int operation)
  428. + {
  429. +  int ret;
  430. +  if ((ret = fd_lock(fd, FD_RDWR, NULL)) == OK) {
  431. +  if ((ret = machdep_sys_flock(fd_table[fd]->fd.i,
  432. +  operation)) < OK) {
  433. +  SET_ERRNO(-ret);
  434. +  ret = NOTOK;
  435. +  }
  436. +  fd_unlock(fd, FD_RDWR);
  437. +  }
  438. +  return(ret);
  439. + }
  440. + #endif
  441.   /* ==========================================================================
  442.    * pipe()
  443.    */
  444. ***************
  445. *** 1126,1132 ****
  446.    /* Get the error, this function should not fail */
  447.    machdep_sys_getsockopt(fd_table[fd]->fd.i, SOL_SOCKET,
  448.      SO_ERROR, &ret, &tmpnamelen); 
  449. !  SET_ERRNO(-ret);
  450.    ret = NOTOK;
  451.    }
  452.               } else {
  453. --- 1148,1155 ----
  454.    /* Get the error, this function should not fail */
  455.    machdep_sys_getsockopt(fd_table[fd]->fd.i, SOL_SOCKET,
  456.      SO_ERROR, &ret, &tmpnamelen);
  457. !  /* ret is already positive (mevans) */
  458. !  SET_ERRNO(ret);
  459.    ret = NOTOK;
  460.    }
  461.               } else {
  462. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/pthreads/malloc.c pthreads-1_60_beta6+/pthreads/malloc.c
  463. *** pthreads-1_60_beta6/pthreads/malloc.c Thu Mar  9 21:06:43 1995
  464. --- pthreads-1_60_beta6+/pthreads/malloc.c Sat Mar 15 14:09:00 1997
  465. ***************
  466. *** 196,204 ****
  467.    else
  468.    n = n - x;
  469.      if (n) {
  470. !     if (sbrk(n) == (char *)-1)
  471.    return (NULL);
  472.    }
  473.    bucket = 0;
  474.    amt = 8;
  475.    while (pagesz > amt) {
  476. --- 196,207 ----
  477.    else
  478.    n = n - x;
  479.      if (n) {
  480. !  if (sbrk(n) == (char *)-1) {
  481. !  /* Unlock before returning (mevans) */
  482. !  pthread_mutex_unlock(mutex);
  483.    return (NULL);
  484.    }
  485. +  }
  486.    bucket = 0;
  487.    amt = 8;
  488.    while (pagesz > amt) {
  489. ***************
  490. *** 363,366 ****
  491. --- 366,382 ----
  492.    free(cp);
  493.   
  494.      return (res);
  495. + }
  496. + /* ==========================================================================
  497. +  * calloc()
  498. +  *
  499. +  * Added to ensure pthread's allocation is used (mevans).
  500. +  */
  501. + void *calloc(size_t nmemb, size_t size)
  502. + {
  503. +  void *p;
  504. +  size *= nmemb;
  505. +  p = malloc(size);
  506. +  if (p) memset(p, 0, size);
  507. +  return (p);
  508.   }
  509. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/pthreads/select.c pthreads-1_60_beta6+/pthreads/select.c
  510. *** pthreads-1_60_beta6/pthreads/select.c Sat Jul  6 21:58:55 1996
  511. --- pthreads-1_60_beta6+/pthreads/select.c Sat Mar 15 14:09:00 1997
  512. ***************
  513. *** 165,176 ****
  514.    pthread_resched_resume(PS_SELECT_WAIT);
  515.   
  516.    /* We're awake */
  517. -  CLEAR_PF_DONE_EVENT(pthread_run);
  518.    if (sleep_cancel(pthread_run) == NOTOK) {
  519.    ret = OK;
  520.    } else {
  521.    ret = data.nfds;
  522.    }
  523.    } else {
  524.    pthread_resched_resume(PS_SELECT_WAIT);
  525.    CLEAR_PF_DONE_EVENT(pthread_run);
  526. --- 165,180 ----
  527.    pthread_resched_resume(PS_SELECT_WAIT);
  528.   
  529.    /* We're awake */
  530.    if (sleep_cancel(pthread_run) == NOTOK) {
  531.    ret = OK;
  532.    } else {
  533.    ret = data.nfds;
  534.    }
  535. +  /* Moving this after the sleep_cancel() seemed
  536. +   * to fix intermittent crashes during heavy
  537. +   * socket use. (mevans)
  538. +   */
  539. +  CLEAR_PF_DONE_EVENT(pthread_run);
  540.    } else {
  541.    pthread_resched_resume(PS_SELECT_WAIT);
  542.    CLEAR_PF_DONE_EVENT(pthread_run);
  543. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/pthreads/signal.c pthreads-1_60_beta6+/pthreads/signal.c
  544. *** pthreads-1_60_beta6/pthreads/signal.c Tue Mar 12 21:33:17 1996
  545. --- pthreads-1_60_beta6+/pthreads/signal.c Sat Mar 15 14:09:00 1997
  546. ***************
  547. *** 65,71 ****
  548.    */
  549.   
  550.   static sig_atomic_t signum_to_process[SIGMAX + 1] = { 0, };
  551. ! static sig_atomic_t sig_to_process = 0;
  552.   
  553.   /* static volatile sigset_t sig_to_process; */
  554.   static volatile int sig_count = 0;
  555. --- 65,71 ----
  556.    */
  557.   
  558.   static sig_atomic_t signum_to_process[SIGMAX + 1] = { 0, };
  559. ! volatile sig_atomic_t sig_to_process = 0;
  560.   
  561.   /* static volatile sigset_t sig_to_process; */
  562.   static volatile int sig_count = 0;
  563. ***************
  564. *** 303,309 ****
  565.    break;
  566.    case NOTOK:
  567.    /* Do the registered action, no threads were sleeping */
  568. !  sigdefault(sig);
  569.    break;
  570.    } 
  571.    break;
  572. --- 303,317 ----
  573.    break;
  574.    case NOTOK:
  575.    /* Do the registered action, no threads were sleeping */
  576. !  /* There is a timing window that gets
  577. !   * here when no threads are on the
  578. !   * sleep queue.  This is a quick fix.
  579. !   * The real problem is possibly related
  580. !   * to heavy use of condition variables
  581. !   * with time outs.
  582. !   * (mevans)
  583. !   *sigdefault(sig);
  584. !   */
  585.    break;
  586.    } 
  587.    break;
  588. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/stdio/setvbuf.c pthreads-1_60_beta6+/stdio/setvbuf.c
  589. *** pthreads-1_60_beta6/stdio/setvbuf.c Sat Sep  3 20:58:36 1994
  590. --- pthreads-1_60_beta6+/stdio/setvbuf.c Sat Mar 15 14:09:00 1997
  591. ***************
  592. *** 142,148 ****
  593.    flags |= __SLBF;
  594.    if (flags & __SRW)
  595.    flags &= ~(__SRD | __SWR);
  596. !  fp->_w = 0;
  597.    fp->_flags = flags;
  598.    fp->_bf._base = fp->_p = (unsigned char *)buf;
  599.    fp->_bf._size = size;
  600. --- 142,148 ----
  601.    flags |= __SLBF;
  602.    if (flags & __SRW)
  603.    flags &= ~(__SRD | __SWR);
  604. !  fp->_w = size; /* Was 0 (mevans) */
  605.    fp->_flags = flags;
  606.    fp->_bf._base = fp->_p = (unsigned char *)buf;
  607.    fp->_bf._size = size;
  608. diff -c -b -r -d -I .*$Id:.* pthreads-1_60_beta6/stdlib/system.c pthreads-1_60_beta6+/stdlib/system.c
  609. *** pthreads-1_60_beta6/stdlib/system.c Wed Apr 24 21:18:56 1996
  610. --- pthreads-1_60_beta6+/stdlib/system.c Sat Mar 15 14:09:01 1997
  611. ***************
  612. *** 62,68 ****
  613.    argp[2] = (char *) command;
  614.    sigemptyset(&tmp_mask);
  615.    sigaddset(&tmp_mask, SIGCHLD);
  616. !  pthread_sigmask(SIG_BLOCK, tmp_mask, &old_mask);
  617.    switch(pid = fork()) {
  618.    case -1: /* error */
  619.    (void)pthread_sigmask(SIG_SETMASK, &old_mask, NULL);
  620. --- 62,69 ----
  621.    argp[2] = (char *) command;
  622.    sigemptyset(&tmp_mask);
  623.    sigaddset(&tmp_mask, SIGCHLD);
  624. !  /* Pass the address of tmp_mask to avoid a sigfault. (mevans). */
  625. !  pthread_sigmask(SIG_BLOCK, &tmp_mask, &old_mask);
  626.    switch(pid = fork()) {
  627.    case -1: /* error */
  628.    (void)pthread_sigmask(SIG_SETMASK, &old_mask, NULL);