Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 1 | -0/+2 |
| | |||||
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 1 | -16/+16 |
| | | | | Thanks to Skip Montanaro and Kalle Svensson for the patches. | ||||
* | Remove the unused & broken PyThread_*_sema() functions and related constants. | Fred Drake | 2002-01-19 | 1 | -7/+0 |
| | | | | This closes SF patch #504215. | ||||
* | Partial patch from SF #452266, by Jason Petrone. | Guido van Rossum | 2001-10-16 | 1 | -1/+1 |
| | | | | | | 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 Rossum | 2000-09-01 | 1 | -9/+0 |
| | | | | This should match the situation in the 1.6b1 tree. | ||||
* | ANSI-fication and Py_PROTO extermination. | Fred Drake | 2000-07-09 | 1 | -30/+22 |
| | |||||
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
| | |||||
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
| | |||||
* | Conform to standard boilerplate. | Guido van Rossum | 1999-03-24 | 1 | -3/+34 |
| | |||||
* | Thanks to Chris Herborth, the thread primitives now have proper Py* | Guido van Rossum | 1998-12-21 | 1 | -55/+21 |
| | | | | | 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). | ||||
* | Add DL_IMPORT(returntype) for all officially exported functions. | Guido van Rossum | 1998-12-04 | 1 | -21/+21 |
| | |||||
* | Changes for BeOS, QNX and long long, by Chris Herborth. | Guido van Rossum | 1998-08-04 | 1 | -0/+12 |
| | |||||
* | Massive changes for separate thread state management. | Guido van Rossum | 1997-05-05 | 1 | -0/+9 |
| | | | | | All per-thread globals are moved into a struct which is manipulated separately. | ||||
* | Add Macros defining new names for all external symbols. | Guido van Rossum | 1997-03-14 | 1 | -0/+18 |
| | |||||
* | Add waitflag to down_sema(). | Guido van Rossum | 1996-10-08 | 1 | -1/+3 |
| | |||||
* | The great renaming, phase two: all header files have been updated to | Guido van Rossum | 1995-01-12 | 1 | -18/+18 |
| | | | | | | | use the new names exclusively, and the linker will see the new names. Files that import "Python.h" also only see the new names. Files that import "allobjects.h" will continue to be able to use the old names, due to the inclusion (in allobjects.h) of "rename2.h". | ||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -0/+6 |
| | |||||
* | almodule.c: added close method, equivalent to closeport. | Sjoerd Mullender | 1993-12-20 | 1 | -18/+18 |
| | | | | thread.h: use PROTO instead of _P for prototypes. | ||||
* | Added C++ support in thread.h; don't use signals if not strictly | Sjoerd Mullender | 1992-09-11 | 1 | -5/+12 |
| | | | | | necessary, and when they are, use SIGKILL; when compiled with -DDEBUG, only print debug messages when "THREADDEBUG" is set in the environment. | ||||
* | New thread.c from Sjoerd, supports _exit_prog(). Use this in goaway() | Guido van Rossum | 1992-08-17 | 1 | -0/+9 |
| | | | | to avoid hanging in cleanup(). | ||||
* | * Makefile adapted to changes below. | Guido van Rossum | 1992-08-04 | 1 | -0/+27 |
* split pythonmain.c in two: most stuff goes to pythonrun.c, in the library. * new optional built-in threadmodule.c, build upon Sjoerd's thread.{c,h}. * new module from Sjoerd: mmmodule.c (dynamically loaded). * new module from Sjoerd: sv (svgen.py, svmodule.c.proto). * new files thread.{c,h} (from Sjoerd). * new xxmodule.c (example only). * myselect.h: bzero -> memset * select.c: bzero -> memset; removed global variable |