SCM Repository
View of /sml/branches/SMLNJ/src/runtime/config/gen-unix-signals.h
Parent Directory
|
Revision Log
Revision 3 -
(download)
(as text)
(annotate)
Sat Oct 4 23:33:46 1997 UTC (23 years, 5 months ago)
File size: 654 byte(s)
Sat Oct 4 23:33:46 1997 UTC (23 years, 5 months ago)
File size: 654 byte(s)
This commit was manufactured by cvs2svn to create branch 'SMLNJ'.
/* gen-unix-signals.h * * COPYRIGHT (c) 1995 AT&T Bell Laboratories. */ typedef struct { int sig; /* the UNIX signal code */ char *sigName; /* the symbolic name of the signal (i.e., */ /* the #define name). */ char *shortName; /* the short name of the signal passed to ML */ } sig_desc_t; typedef struct { sig_desc_t **sigs; /* an ordered vector of signal descriptions */ int numSysSigs; /* the number of system signals */ int numRunSigs; /* the number of run-time signals. */ int maxSysSig; /* the maximum system signal number. */ } sig_info_t; extern sig_info_t *SortSignalTbl ();
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |