repo.or.cz
/
jimtcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
appveyor.yml: explicitly build with ssl
[jimtcl.git]
/
jim-signal.h
blob
09f688a773af92dd4c818ee18778885553737954
1
#ifndef JIM_SIGNAL_H
2
#define JIM_SIGNAL_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
/**
9
* Returns the canonical name for the given signal,
10
* e.g. "SIGTERM", "SIGINT"
11
*/
12
const char
*
Jim_SignalId
(
int
sig
);
13
14
#ifdef __cplusplus
15
}
16
#endif
17
18
#endif