Differences From Artifact [403f54be9a]:
- File unix/tclUnixCompat.c — part of check-in [123ede1877] at 2012-05-03 13:10:09 on branch trunk — Move cpuid testcase from win-specific to generic tests (user: jan.nijtmans size: 23433) [more...]
To Artifact [714c05e9b7]:
- File unix/tclUnixCompat.c — part of check-in [211aa43013] at 2012-08-08 23:07:27 on branch trunk — Change one '#ifdef' to '#if defined()' for improved consistency within the file. (user: stwo size: 23439) [more...]
| ︙ | |||
360 361 362 363 364 365 366 | 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | - + |
const char *name)
{
#if !defined(TCL_THREADS)
return getgrnam(name);
#else
ThreadSpecificData *tsdPtr = TCL_TSD_INIT(&dataKey);
|
| ︙ |