source: asp3_tinet_ecnl_rx/trunk/musl-1.1.18/src/internal/ksigaction.h@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 343 bytes
Line 
1/* This is the structure used for the rt_sigaction syscall on most archs,
2 * but it can be overridden by a file with the same name in the top-level
3 * arch dir for a given arch, if necessary. */
4struct k_sigaction {
5 void (*handler)(int);
6 unsigned long flags;
7 void (*restorer)(void);
8 unsigned mask[2];
9};
10
11void __restore(), __restore_rt();
Note: See TracBrowser for help on using the repository browser.