Differences From Artifact [208f38eeb6]:
- File unix/tclUnixThrd.c — part of check-in [386a7f85ff] at 2003-05-13 10:16:16 on branch trunk — fix for [Bug 732477] (user: mistachkin size: 22307)
To Artifact [acfbcda3a8]:
- File unix/tclUnixThrd.c — part of check-in [524a53e3b3] at 2003-12-24 04:18:18 on branch trunk — All uses of 'panic' (the macro) changed to 'Tcl_Panic' (the function). The #define of panic in tcl.h clearly states it is deprecated in the comments. [Patch 865264] (user: davygrvy size: 22311) [more...]
| ︙ | |||
912 913 914 915 916 917 918 | 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 | - + |
struct lock {
Tcl_Mutex tlock;
pthread_mutex_t plock;
} *lockPtr;
lockPtr = malloc(sizeof(struct lock));
if (lockPtr == NULL) {
|
| ︙ |