summaryrefslogtreecommitdiffstats
path: root/lib/libthr/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add a stub libthr(3) man page to document what it is and why, as well asrwatson2005-06-111-0/+2
| | | | | | | | | to point at libmap.conf(5). This will help answer questions about what and why it is, although not in great detail. Approved by: re (scottl) MFC after: 1 week MFC note: When MFC'd, don't MFC mention of work not yet MFC'd.
* Use thr_new syscall to create a new thread, obscure context operationsdavidxu2005-04-231-0/+1
| | | | is no longer needed.
* Add debugger event reporting support, current only TD_CREATE and TD_DEATHdavidxu2005-04-121-0/+1
| | | | events are reported.
* Remove debug symbol from installed library, one can alwaysdavidxu2005-04-061-1/+1
| | | | use compiled version in libthr directory.
* Import my recent 1:1 threading working. some features improved includes:davidxu2005-04-021-6/+12
| | | | | | | | | | | | | | | | 1. fast simple type mutex. 2. __thread tls works. 3. asynchronous cancellation works ( using signal ). 4. thread synchronization is fully based on umtx, mainly, condition variable and other synchronization objects were rewritten by using umtx directly. those objects can be shared between processes via shared memory, it has to change ABI which does not happen yet. 5. default stack size is increased to 1M on 32 bits platform, 2M for 64 bits platform. As the result, some mysql super-smack benchmarks show performance is improved massivly. Okayed by: jeff, mtm, rwatson, scottl
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Add rtld-elf to the include path for the rtld to pthread TLS interface.dfr2004-08-151-0/+1
|
* Relink libc_r.a, libc_r.so and libc_r_p.so from libthr to libkse.marcel2003-09-271-12/+0
| | | | | | | | | | | On ia64, where there's no libc_r at all, libkse is now the default thread library by virtue of these links. The reasons for this change are: 1. libkse is slated to become the default thread library anyway, 2. active development and maintenance is only present for libkse, 3. GNOME and KDE, both in the process of being supported on ia64, work better with KSE; even on ia64.
* Axe AINC.ru2003-07-011-1/+0
| | | | Submitted by: bde
* Create compatibility links for libc_r on ia64 to prevent build-timemarcel2003-06-271-0/+12
| | | | | | | | | breakages. Note that runtime compatibility is not guaranteed. Future changes to setjmp/longjmp in libc will break threaded applications linked against libc_r.so.5 on ia64. We pull our "tier 2" card once more... Reviewed by: ru
* Make WARNS2 clean. The fixes mostly included:mtm2003-05-231-0/+2
| | | | | | | | o removed unused variables o explicit inclusion of header files o prototypes for externally defined functions Approved by: re/blanket libthr
* - Adjust the makefiles so we have a per architecture makefile.jeff2003-04-011-0/+1
|
* - Add libthr but don't hook it up to the regular build yet. This is anjeff2003-04-011-0/+26
adaptation of libc_r for the thr system call interface. This is beta quality code.
OpenPOWER on IntegriCloud