Index: ossp-pkg/pth/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/pth/ChangeLog,v rcsdiff -q -kk '-r1.584' '-r1.585' -u '/v/ossp/cvs/ossp-pkg/pth/ChangeLog,v' 2>/dev/null --- ChangeLog 2002/11/03 11:15:04 1.584 +++ ChangeLog 2002/11/03 11:24:49 1.585 @@ -19,7 +19,7 @@ | |_ ___) | __|_(_)____/____________________________________________________________ - Changes between 1.4.1 and 1.5.0 (27-Jan-2002 to xx-Oct-2002) + Changes between 1.4.1 and 1.5.0 (27-Jan-2002 to xx-Nov-2002) *) Added thread attribute PTH_ATTR_DISPATCHES which (in bounded attribute objects) is incremented every time the context Index: ossp-pkg/pth/NEWS RCS File: /v/ossp/cvs/ossp-pkg/pth/NEWS,v rcsdiff -q -kk '-r1.33' '-r1.34' -u '/v/ossp/cvs/ossp-pkg/pth/NEWS,v' 2>/dev/null --- NEWS 2002/10/20 11:55:03 1.33 +++ NEWS 2002/11/03 11:24:49 1.34 @@ -14,6 +14,13 @@ Changes between 1.4 and 1.5 (24-Mar-2001 to xx-Oct-2002) + *) Added thread attribute PTH_ATTR_DISPATCHES. + *) Added sub-API pth_uctx_* for user-space context switching. + *) Add a Pth variant of the new POSIX pselect(2) function. + *) Internally cleaned up the error handling macros. + *) Added POSIX-compliant sanity checks for bad fds. + *) Added pth_nanosleep() function. + *) Allow a NULL name for pth_msgport_create() *) Completely rewrote the "hard syscall mapping". *) Added support to pth_poll(3) for POLLD{RD,WR}{NORM,BAND}. *) Fixed a long-standing termination bug in pth_exit(3). Index: ossp-pkg/pth/pth_vers.c RCS File: /v/ossp/cvs/ossp-pkg/pth/pth_vers.c,v rcsdiff -q -kk '-r1.140' '-r1.141' -u '/v/ossp/cvs/ossp-pkg/pth/pth_vers.c,v' 2>/dev/null --- pth_vers.c 2002/01/27 16:14:02 1.140 +++ pth_vers.c 2002/11/03 11:24:49 1.141 @@ -8,7 +8,7 @@ #ifndef _PTH_VERS_C_ #define _PTH_VERS_C_ -#define PTH_INTERNAL_VERSION 0x105101 +#define PTH_INTERNAL_VERSION 0x105200 typedef struct { const int v_hex; @@ -32,13 +32,13 @@ #undef _PTH_VERS_C_AS_HEADER_ pth_internal_version_t pth_internal_version = { - 0x105101, - "1.5b1", - "1.5b1 (27-Jan-2002)", - "This is GNU Pth, Version 1.5b1 (27-Jan-2002)", - "GNU Pth 1.5b1 (27-Jan-2002)", - "GNU Pth/1.5b1", - "@(#)GNU Pth 1.5b1 (27-Jan-2002)", + 0x105200, + "1.5.0", + "1.5.0 (03-Nov-2002)", + "This is GNU Pth, Version 1.5.0 (03-Nov-2002)", + "GNU Pth 1.5.0 (03-Nov-2002)", + "GNU Pth/1.5.0", + "@(#)GNU Pth 1.5.0 (03-Nov-2002)", "$Id$" };