summaryrefslogtreecommitdiff
path: root/devel/pth (follow)
Commit message (Collapse)AuthorAgeFilesLines
* GNU Pth 1.1.0 -> 1.1.1Ralf S. Engelschall1999-08-212-4/+4
| | | | Notes: svn path=/head/; revision=20841
* Upgrade to the new stabilized GNU Portable Thread 1.1 series.Ralf S. Engelschall1999-08-193-7/+14
| | | | | | | This port is now at GNU Pth 1.1.0. Notes: svn path=/head/; revision=20819
* Upgrade to GNU Portable Threads, version 1.0.6Ralf S. Engelschall1999-08-172-4/+4
| | | | Notes: svn path=/head/; revision=20758
* Upgrade to GNU Portable Threads, version 1.0.5Ralf S. Engelschall1999-08-102-4/+4
| | | | Notes: svn path=/head/; revision=20638
* Upgrade to GNU Pth 1.0.4Ralf S. Engelschall1999-08-032-4/+4
| | | | Notes: svn path=/head/; revision=20516
* Upgrade to GNU Portable Threads, version 1.0.3Ralf S. Engelschall1999-08-012-4/+4
| | | | Notes: svn path=/head/; revision=20465
* Upgrade to GNU Portable Threads (Pth), version 1.0.2Ralf S. Engelschall1999-07-282-4/+4
| | | | Notes: svn path=/head/; revision=20374
* Upgrade to GNU Portable Threads (Pth), Version 1.0.1Ralf S. Engelschall1999-07-222-4/+4
| | | | Notes: svn path=/head/; revision=20315
* Puhh.... after five months of hard development we've approachedRalf S. Engelschall1999-07-163-19/+23
| | | | | | | GNU Portable Threads (Pth), release version 1.0.0 :-) Notes: svn path=/head/; revision=20231
* Upgrade to GNU Portable Threads (Pth), version 1.0b8Ralf S. Engelschall1999-07-162-4/+4
| | | | Notes: svn path=/head/; revision=20230
* GNU Pth 1.0b6 -> 1.0b7 (just the hourly version bump ;)Ralf S. Engelschall1999-07-142-4/+4
| | | | Notes: svn path=/head/; revision=20201
* Upgrade to GNU Portable Threads, Version 1.0b6Ralf S. Engelschall1999-07-142-4/+4
| | | | Notes: svn path=/head/; revision=20191
* Upgrade to GNU Portable Threads (Pth), Version 1.0b5Ralf S. Engelschall1999-07-112-5/+7
| | | | Notes: svn path=/head/; revision=20159
* GNU pth 1.0b3 -> 1.0b4 (daily bump ;)Ralf S. Engelschall1999-07-082-4/+4
| | | | Notes: svn path=/head/; revision=20120
* Upgrade to GNU Portable Threads (pth), version 1.0b3Ralf S. Engelschall1999-07-072-4/+4
| | | | Notes: svn path=/head/; revision=20109
* Update new PTH port after repository copy from old NPS port.Ralf S. Engelschall1999-07-055-33/+31
| | | | Notes: svn path=/head/; revision=20076
* NPS 0.9.20 -> 1.0b1Ralf S. Engelschall1999-06-282-4/+10
| | | | Notes: svn path=/head/; revision=19870
* daily version number bump: NPS 0.9.21Ralf S. Engelschall1999-06-262-4/+4
| | | | Notes: svn path=/head/; revision=19797
* NPS 0.9.19 -> 0.9.20Ralf S. Engelschall1999-06-252-4/+4
| | | | Notes: svn path=/head/; revision=19763
* NPS 0.9.18->0.9.19Ralf S. Engelschall1999-06-212-3/+3
| | | | Notes: svn path=/head/; revision=19605
* Upgrade to NPS version 0.9.18Ralf S. Engelschall1999-06-202-4/+4
| | | | Notes: svn path=/head/; revision=19590
* Upgrade to NPS 0.9.16Ralf S. Engelschall1999-06-093-6/+6
| | | | Notes: svn path=/head/; revision=19375
* Upgrade to NPS, Version 0.9.15Ralf S. Engelschall1999-06-042-4/+4
| | | | Notes: svn path=/head/; revision=19204
* NPS 0.9.13 -> 0.9.14Ralf S. Engelschall1999-06-012-4/+4
| | | | Notes: svn path=/head/; revision=19165
* NPS 0.9.12 -> 0.9.13Ralf S. Engelschall1999-06-012-4/+4
| | | | Notes: svn path=/head/; revision=19161
* NPS 0.9.11 -> 0.9.12Ralf S. Engelschall1999-05-302-4/+4
| | | | Notes: svn path=/head/; revision=19125
* NPS 0.9.10 -> 0.9.11Ralf S. Engelschall1999-05-282-4/+4
| | | | Notes: svn path=/head/; revision=19036
* Upgrade to NPS 0.9.10Ralf S. Engelschall1999-05-282-4/+4
| | | | Notes: svn path=/head/; revision=19033
* Upgrade to NPS 0.9.9Ralf S. Engelschall1999-05-253-4/+9
| | | | Notes: svn path=/head/; revision=18989
* Upgrade to NPS (non-preemtive thread scheduling library), version 0.9.8Ralf S. Engelschall1999-05-242-4/+4
| | | | Notes: svn path=/head/; revision=18977
* Import of NPS, a non-preeemtive thread scheduling library.Ralf S. Engelschall1999-05-235-0/+51
NPS is a POSIX/ANSI-C based library for Unix platforms which provides non-preemtive scheduling for multiple threads of execution ("multi-threading") inside server applications. All threads run in the same address space of the server application, but each thread has it's own individual run-time stack and program-counter. The thread scheduling itself is done in a cooperative way, i.e. the threads are managed by a priority- and event-based non-preemtive scheduler. The intention is that this way one can achieve better portability and run-time performance than with preemtive scheduling. The event facility allows threads to wait until various types of events occur, including pending I/O on filedescriptors, elapsed timers, pending I/O on message ports, thread and process termination, and even customized callback functions. More details: http://www.engelschall.com/sw/nps/ ftp://ftp.engelschall.com/sw/nps/ Notes: svn path=/head/; revision=18941