summaryrefslogtreecommitdiff
path: root/lib/libc_r/test
Commit message (Collapse)AuthorAgeFilesLines
* Remove libc_r threading library. It has been disconnected from the buildEd Maste2010-11-1321-3737/+0
| | | | | | | | | for four years (since r162846). Submitted by: Alexander Best arundel@ Notes: svn path=/head/; revision=215269
* Make this compile without warnings on 64-bit architectures:Marcel Moolenaar2003-06-041-6/+7
| | | | | | | | Don't cast thread_self() to int. Cast to uintptr_t. Pull in the predefined printf format from <inttypes.h> Notes: svn path=/head/; revision=115855
* Make this compile without warnings on 64-bit architectures:Marcel Moolenaar2003-06-041-1/+1
| | | | | | | | In recurse(), cast the pointer difference to int to match the format. The difference is expected to fit in an int. Notes: svn path=/head/; revision=115854
* If the library is not able to create a thread because resourcesMike Makonnen2003-06-041-0/+4
| | | | | | | | | don't allow it at the moment, the correct thing to do is try again. Otherwise, libthr would fail this test because it doesn't allow an unlimited number of concurrent threads per application. Notes: svn path=/head/; revision=115819
* Revert accidental change: don't change the thread library for testing toRobert Watson2003-06-021-1/+1
| | | | | | | | | libthr. Oops, sorry about that. Submitted by: "Simon L. Nielsen" <simon@nitro.dk> Notes: svn path=/head/; revision=115658
* Include string.h for memset().Robert Watson2003-06-012-1/+2
| | | | Notes: svn path=/head/; revision=115649
* Fix a couple of minor nits that prevented this from compiling.Daniel Eischen2002-07-021-2/+4
| | | | | | | Pointed out by: julian Notes: svn path=/head/; revision=99239
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-1/+1
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* Mark some functions as __printflike() and/or taking const char * argumentsKris Kennaway2001-08-201-0/+3
| | | | | | | | | instead of char *. MFC after: 2 weeks Notes: svn path=/head/; revision=81975
* Implement pthread_attr_[gs]etguardsize(). Non-default-size stacks used toJason Evans2001-07-204-2/+224
| | | | | | | | | | | be malloc()ed, but they are now allocated using mmap(), just as the default-size stacks are. A separate cache of stacks is kept for non-default-size stacks. Collaboration with: deischen Notes: svn path=/head/; revision=80021
* Add a test for PR 24345.Jason Evans2001-05-202-0/+110
| | | | Notes: svn path=/head/; revision=76913
* Update the verify script.Jason Evans2001-05-202-201/+162
| | | | Notes: svn path=/head/; revision=76912
* Don't define _REENTRANT, since the Makefile does so.Jason Evans2001-05-201-2/+0
| | | | Notes: svn path=/head/; revision=76911
* Fix a typo.Jason Evans2001-05-201-1/+1
| | | | Notes: svn path=/head/; revision=76910
* -pthread -> -lc_rDaniel Eischen2001-01-241-1/+1
| | | | Notes: svn path=/head/; revision=71586
* Add test to detect propagation of cancellation points within libc_r.Jason Evans2000-04-262-1/+75
| | | | Notes: svn path=/head/; revision=59667
* Automated regression test harness for libc_r. Existing tests are integrated,Jason Evans2000-04-2418-69/+1271
| | | | | | | | a new test for POSIX semaphores was added, and examples of harness usage are included. Notes: svn path=/head/; revision=59612
* Change to work with recent signal changes. The signal being handled isDaniel Eischen1999-12-171-6/+14
| | | | | | | | now added to the signal mask; this test failed because it didn't allow for this. Notes: svn path=/head/; revision=54738
* Make work for sigset_t change. Also modify tests to account forDaniel Eischen1999-12-052-6/+6
| | | | | | | recent changes to signal handling. Notes: svn path=/head/; revision=54139
* $Id$ -> $FreeBSD$Peter Wemm1999-08-287-7/+7
| | | | Notes: svn path=/head/; revision=50476
* Add RCS IDs to those files without them.Daniel Eischen1999-08-053-0/+3
| | | | | | | | | | Fix copyrights (s/REGENTS/AUTHOR). Suggested by: tg Approved by: jb Notes: svn path=/head/; revision=49439
* Mutex test program.John Birrell1999-05-092-0/+1556
| | | | | | | Submitted by: Daniel Eischen <eischen@vigrid.com> Notes: svn path=/head/; revision=46772
* Add mutex test program.John Birrell1999-05-091-2/+2
| | | | Notes: svn path=/head/; revision=46771
* Revise test code for sigwait and add test code for sigsuspend.John Birrell1998-09-302-0/+281
| | | | | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com> Notes: svn path=/head/; revision=39811
* Revise test code for sigwait and add test code for sigsuspend.John Birrell1998-09-302-14/+112
| | | | | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com> Notes: svn path=/head/; revision=39810
* Test program for sigwait.John Birrell1998-08-252-0/+205
| | | | | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com> Notes: svn path=/head/; revision=38541
* Add support for building test programs.John Birrell1998-08-251-0/+8
Notes: svn path=/head/; revision=38540