~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to system/include/libc/sys/signal.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-09-20 22:44:35 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20130920224435-apuwj4fsl3fqv1a6
Tags: 1.5.6~20130920~6010666-1
* New snapshot release
* Update the list of supported architectures to the same as libv8
  (Closes: #723129)
* emlibtool has been removed from upstream.
* Fix warning syntax-error-in-dep5-copyright
* Refresh of the patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
                         /*   three arguments instead of one. */
74
74
#define SA_NODEFER   4   /* XXX Emscripten */
75
75
#define SA_RESETHAND 8   /* XXX Emscripten */
 
76
#define SA_RESTART   16  /* XXX Emscripten */
76
77
 
77
78
/* struct sigaction notes from POSIX:
78
79
 *
297
298
#define SIGLOST 29      /* resource lost (eg, record-lock lost) */
298
299
#define SIGUSR1 30      /* user defined signal 1 */
299
300
#define SIGUSR2 31      /* user defined signal 2 */
300
 
#define NSIG    32      /* signal 0 implied */
 
301
#define NSIG    64      /* signal 0 implied */
 
302
#define SIGRTMIN 32
 
303
#define SIGRTMAX NSIG
301
304
#endif
302
305
#endif
303
306