source: azure_iot_hub/trunk/musl-1.1.18/src/internal/ksigaction.h@ 388

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

Azure IoT Hub Device C SDK を使ったサンプルの追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-chdr
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.