Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Commented out debugging printf for returning from the locking function as well |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
8e27f5595c3798f3f846ce64d4d2e68b |
| User & Date: | rkeene 2016-12-13 06:39:40 |
Context
|
2016-12-13
| ||
| 06:47 | Removed extraenous cleanup check-in: 5798396954 user: rkeene tags: trunk | |
| 06:39 | Commented out debugging printf for returning from the locking function as well check-in: 8e27f5595c user: rkeene tags: trunk | |
| 06:39 | Added additional ignores check-in: 5315cfb88d user: rkeene tags: trunk | |
Changes
Changes to tls.c.
| ︙ | ︙ | |||
128 129 130 131 132 133 134 |
/* dprintf("Called to lock (n=%i of %i)", n, locksCount); */
Tcl_MutexLock(&locks[n]);
} else {
/* dprintf("Called to unlock (n=%i of %i)", n, locksCount); */
Tcl_MutexUnlock(&locks[n]);
}
| | | 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 |
/* dprintf("Called to lock (n=%i of %i)", n, locksCount); */
Tcl_MutexLock(&locks[n]);
} else {
/* dprintf("Called to unlock (n=%i of %i)", n, locksCount); */
Tcl_MutexUnlock(&locks[n]);
}
/* dprintf("Returning"); */
return;
file = file;
line = line;
}
unsigned long CryptoThreadIdCallback(void) {
|
| ︙ | ︙ |