Tcl Source Code

Check-in [62b7ba34b2]
Login

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

Overview
Comment:merge core-8-4-branch
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | bug-3508771
Files: files | file ages | folders
SHA1: 62b7ba34b20c55d8def38e836edcff65d7ec06f4
User & Date: jan.nijtmans 2012-04-04 15:08:56
Context
2012-04-06
23:33
tclpGetPid signature change (stub entry only, not for macro), for win64 compatibility with future cy... check-in: 7fd5826902 user: jan.nijtmans tags: bug-3508771
2012-04-04
15:08
merge core-8-4-branch check-in: 62b7ba34b2 user: jan.nijtmans tags: bug-3508771
14:50
implement TclpGetPid for Cygwin check-in: dcc7f6a5b4 user: jan.nijtmans tags: bug-3508771
14:44
Quick workaround for busted branch tip. check-in: 2372607d3e user: dgp tags: core-8-4-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclStubInit.c.

56
57
58
59
60
61
62

63
64
65
66
67
68
69
    NULL
};

/* See bug 510001: TclSockMinimumBuffers needs plat imp */
#ifdef _WIN64
#   define TclSockMinimumBuffersOld 0
#else

int TclSockMinimumBuffersOld(sock, size)
    int sock;
    int size;
{
    return TclSockMinimumBuffers((void *) (size_t) sock, size);
}
#endif







>







56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
    NULL
};

/* See bug 510001: TclSockMinimumBuffers needs plat imp */
#ifdef _WIN64
#   define TclSockMinimumBuffersOld 0
#else
#undef TclSockMinimumBuffers
int TclSockMinimumBuffersOld(sock, size)
    int sock;
    int size;
{
    return TclSockMinimumBuffers((void *) (size_t) sock, size);
}
#endif