Tcl Source Code

Check-in [9fc4ed3a6d]
Login

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

Overview
Comment:Quick workaround for busted branch tip.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | core-8-5-branch
Files: files | file ages | folders
SHA1: 9fc4ed3a6ddf3a64b91b2fe5605ae74e8f919f13
User & Date: dgp 2012-04-04 14:48:38
Context
2012-04-04
20:17
some formatting (*.decls) move up #undef, for macro which is conflicting with later stuff. remove so... check-in: 904f4fe3fe user: jan.nijtmans tags: core-8-5-branch
15:07
merge-mark check-in: fdfbefa0b9 user: jan.nijtmans tags: trunk
14:48
Quick workaround for busted branch tip. check-in: 9fc4ed3a6d user: dgp tags: core-8-5-branch
14:44
Quick workaround for busted branch tip. check-in: 2372607d3e user: dgp tags: core-8-4-branch
09:05
[Bug 510001]: TclSockMinimumBuffers needs plat imp check-in: 2725f75513 user: jan.nijtmans tags: core-8-5-branch
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclStubInit.c.

55
56
57
58
59
60
61

62
63
64
65
66
67
68
    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







>







55
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
#undef TclSockMinimumBuffers
int TclSockMinimumBuffersOld(sock, size)
    int sock;
    int size;
{
    return TclSockMinimumBuffers((void *) (size_t) sock, size);
}
#endif