aio recvfrom was not null terminating the result
[jimtcl.git] / jim-signal.h
blobc5cdf9f66bb291597ed5ee6bb617ac7e673595c9
1 #ifndef JIM_SIGNAL_H
2 #define JIM_SIGNAL_H
4 /*
5 *----------------------------------------------------------------------
7 * Tcl_SignalId --
9 * Return a textual identifier for a signal number.
11 * Results:
12 * This procedure returns a machine-readable textual identifier
13 * that corresponds to sig. The identifier is the same as the
14 * #define name in signal.h.
16 * Side effects:
17 * None.
19 *----------------------------------------------------------------------
21 const char *Jim_SignalId(int sig);
23 #endif