Check-in [4dd5a218c1]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment: * unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4dd5a218c14b4b4ce2ca8fde0d44d319e7fc6847
User & Date: das 2006-12-19 04:35:09.000
Context
2006-12-19
08:56
Fix minor fault found by Joe Mistachkin check-in: f097dba4d4 user: dkf tags: trunk
04:35
* unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit. check-in: 4dd5a218c1 user: das tags: trunk
04:33
* unix/tclUnixThrd.c (TclpInetNtoa): fix for 64 bit. check-in: 537f5091a7 user: das tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to unix/tclUnixThrd.c.
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "tclInt.h"

#ifdef TCL_THREADS

#include "pthread.h"

typedef struct ThreadSpecificData {
    char nabuf[17];
} ThreadSpecificData;

static Tcl_ThreadDataKey dataKey;

/*
 * masterLock is used to serialize creation of mutexes, condition variables,
 * and thread local storage. This is the only place that can count on the







|







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include "tclInt.h"

#ifdef TCL_THREADS

#include "pthread.h"

typedef struct ThreadSpecificData {
    char nabuf[16];
} ThreadSpecificData;

static Tcl_ThreadDataKey dataKey;

/*
 * masterLock is used to serialize creation of mutexes, condition variables,
 * and thread local storage. This is the only place that can count on the