summaryrefslogtreecommitdiffstats
path: root/Python/thread_beos.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove the unused & broken PyThread_*_sema() functions and related constants.Fred Drake2002-01-191-70/+0
| | | | This closes SF patch #504215.
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-281-2/+3
|
* Partial patch from SF #452266, by Jason Petrone.Guido van Rossum2001-10-161-2/+2
| | | | | | This changes Pythread_start_thread() to return the thread ID, or -1 for an error. (It's technically an incompatible API change, but I doubt anyone calls it.)
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-11/+0
| | | | This should match the situation in the 1.6b1 tree.
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
|
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
|
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-10/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | The common technique for printing out a pointer has been to cast to a long and use the "%lx" printf modifier. This is incorrect on Win64 where casting to a long truncates the pointer. The "%p" formatter should be used instead. The problem as stated by Tim: > Unfortunately, the C committee refused to define what %p conversion "looks > like" -- they explicitly allowed it to be implementation-defined. Older > versions of Microsoft C even stuck a colon in the middle of the address (in > the days of segment+offset addressing)! The result is that the hex value of a pointer will maybe/maybe not have a 0x prepended to it. Notes on the patch: There are two main classes of changes: - in the various repr() functions that print out pointers - debugging printf's in the various thread_*.h files (these are why the patch is large) Closes SourceForge patch #100505.
* Thanks to Chris Herborth, the thread primitives now have proper Py*Guido van Rossum1998-12-211-34/+34
| | | | | names in the source code (they already had those for the linker, through some smart macros; but the source still had the old, un-Py names).
* Adding thread support for BeOS by Chris Herborth.Guido van Rossum1998-12-071-0/+388