SCM Repository
View of /sml/trunk/src/runtime/config/gen-unix-signals.h
Parent Directory
|
Revision Log
Revision 250 -
(download)
(as text)
(annotate)
Sat Apr 17 18:57:03 1999 UTC (21 years, 10 months ago) by monnier
File size: 654 byte(s)
Sat Apr 17 18:57:03 1999 UTC (21 years, 10 months ago) by monnier
File size: 654 byte(s)
This commit was generated by cvs2svn to compensate for changes in r249, which included commits to RCS files with non-trunk default branches.
/* 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 |