summaryrefslogtreecommitdiff
path: root/devel/pth/distinfo
AgeCommit message (Collapse)AuthorFilesLines
2004-04-19Enable wrappers for waitpid, recv, and send per PR 24704.skrll1-2/+2
PR and patch from ITOH Yasufumi. PKGREVISION++
2003-05-02Update to 2.0.0, supplied by skrll@netbsd.wiz1-14/+10
Changes: *) Make pth_poll(3) more compliant to POSIX.1-2001/SUSv3 poll(2). *) Make pth_select(3) more compliant to POSIX.1-2001/SUSv3 select(2). *) Replaced pth_event_occurred() with pth_event_status(). *) Add Autoconf option --with-fdsetsize=NUM for enlarging FD_SETSIZE. *) 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). *) Upgraded to Autoconf 2.57, Shtool 1.6.2 and Libtool 1.4.3. *) Add optional support for OSSP ex based exception handling.
2003-02-04PTH_SYSCALL_HARD's fork() replacement didn't work on archs where thedrochner1-2/+2
system call's return values are postprocessed by the libc stub (eg alpha). Change pth to call libc's internal _fork(). This is only available since NetBSD-1.5, older releases are SOL -- sorry, but we need something working for 1.6.1. We should audit all the PTH_SYSCALL_HARD plugins whether they neglect libc assembler magic... bump PKGREVISION
2002-11-26Improve error handling. Patches backported from pth -current.skrll1-3/+4
PKGREVISION++ This fixes PR 19162 from Ingolf Steinbach.
2002-10-23fix botch in a fd_set boundary check which broke uses ofdrochner1-2/+2
select(0,0,0,0,&to) as finegrained delay
2002-10-14Various updates and fixes that I've collected recently:skrll1-7/+10
* Provide nanosleep(2) and usleep(3) wrappers. * Make sure sigprocmask syscalls are used in pth_system. * "Fix" FD_SET handling in the select(2) wrapper so that mismatches between pth FD_SETSIZE and user program FD_SETSIZE don't cause problems. * Update poll(2) wrapper to be more poll(2) like - in particular never return EINVAL for bad file descriptors Thanks to Matthias Drochner for this. * Improve error handling in connect(2) wrapper so that we don't confuse the scheduler. This fixes pkg/17944 from Christian Biere (ChristianBiere at gmx dot de) * Introduce autoconf handling of the value of FD_SETSIZE used by pth. If we have to hard code a value we might as well make it easy to change and make the inclusion of pth.h or pthread.h by a program that re-defines FD_SETSIZE an error. Inspired by pkg/17944. * Fix a compiler warning that I introduced a little while ago. * Disable --enable-syscall-hard for non-NetBSD platforms and for pre-1.6/m68k. Make a note of the PRs that need fixing. This closes pkg/18236 from Klaus Heinz (k dot heinz dot sep dot zwei at onlinehome dot de) The FD_SETSIZE problems would be handled better if pth was changed to use poll(2), and not select(2), internally.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-1/+1
buildlink2.mk files back into the main trunk. This provides sufficient buildlink2 infrastructure to start merging other packages from the buildlink2 branch that have already been converted to use the buildlink2 framework.
2002-08-01Apply a fix to the initialization routine so that make test works withskrll1-1/+2
--enable-syscall-hard. Allow -O2 optimisation of i386 - the reason this was removed is somewhat bogus. Bump PKGREVISION.
2002-03-24update to 1.4.1 from 1.4 This is a bugfix release.dmcmahill1-4/+4
- Internally make sure an invalid file-descriptor (integer not between 0 and (FD_SETSIZE-1) does not lead to any segfaults or other undefined behaviour. Instead an error is returned and errno is set to EBADF, similar to what the OS functions do. Especially pth_poll() now return with this error (instead of skipping the fd) if an fd in the "struct pollfd" is invalid. [Ralf S. Engelschall, Archie Cobbs <archie@packetdesign.com>] - Correctly support PTH_FDMODE_NONBLOCK in pth_connect and pth_accept. [Archie Cobbs <archie@packetdesign.com>] - Fixed typos in manual page. [Michael Schloh v. Bennewitz <michael.schloh@de.cw.net>, Takashi Ishihara <tishihara@ucdavis.edu>] - For portability reasons changed definition of PTH_EXT_SFIO to 0/1 instead of FALSE/TRUE because some external definitions use a casted value and hence make trouble on plain #if constructs. [Staehli Patrik <patrik.staehli@siemens.ch>] - Fixed return value (number of occurred events) of pth_wait(). [David Dureau <david.dureau@cea.fr>] - Replaced thread-unsafe usage of a static struct iovec in pth_writev_ev() with a thread-safe stack/heap-based solution. [Ralf S. Engelschall, Mark Burton <markb@ordern.com>] - Replaced antiquated PTH_FLAG_NOJOIN references with the correct PTH_ATTR_JOINABLE references in the manual page. [Takashi Ishihara <tishihara@ucdavis.edu>] - Fixed a (not very subtle) bug in pth_writev_ev() that screwed up output if a partial write happened. [Mark Burton <markb@ordern.com>] - Fixed static initializers PTH_BARRIER_INIT and PTH_COND_INIT. [Shawn Wagner <shawnw@speakeasy.org>] - Typo fixes in pth.pod [<collver@linuxfreemail.com>] - Upgraded to GNU shtool, version 1.5.4. [Ralf S. Engelschall] - Fixed "make striptease": pth_string.c was not included and some commands which were removed at all (and this way causes syntax errors) will be now correctly commented out with ":" commands. [Paolo Bonzini <bonzini@pc-amo3.elet.polimi.it>]
2001-05-14When --enable-syscall-hard is specified actually provide wrappers for allskrll1-2/+6
the syscalls that are documented as having wrappers. The ones missing were wait4 and sigprocmask. Patches have been sent to package maintainer.
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-1/+1
2001-04-18Add distfile size, use sha1 digestagc1-1/+2
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-0/+5
+ move the patch digest/checksum values from files/patch-sum to distinfo