Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

core.js 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. "use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.SIGNALS=void 0;
  2. const SIGNALS=[
  3. {
  4. name:"SIGHUP",
  5. number:1,
  6. action:"terminate",
  7. description:"Terminal closed",
  8. standard:"posix"},
  9. {
  10. name:"SIGINT",
  11. number:2,
  12. action:"terminate",
  13. description:"User interruption with CTRL-C",
  14. standard:"ansi"},
  15. {
  16. name:"SIGQUIT",
  17. number:3,
  18. action:"core",
  19. description:"User interruption with CTRL-\\",
  20. standard:"posix"},
  21. {
  22. name:"SIGILL",
  23. number:4,
  24. action:"core",
  25. description:"Invalid machine instruction",
  26. standard:"ansi"},
  27. {
  28. name:"SIGTRAP",
  29. number:5,
  30. action:"core",
  31. description:"Debugger breakpoint",
  32. standard:"posix"},
  33. {
  34. name:"SIGABRT",
  35. number:6,
  36. action:"core",
  37. description:"Aborted",
  38. standard:"ansi"},
  39. {
  40. name:"SIGIOT",
  41. number:6,
  42. action:"core",
  43. description:"Aborted",
  44. standard:"bsd"},
  45. {
  46. name:"SIGBUS",
  47. number:7,
  48. action:"core",
  49. description:
  50. "Bus error due to misaligned, non-existing address or paging error",
  51. standard:"bsd"},
  52. {
  53. name:"SIGEMT",
  54. number:7,
  55. action:"terminate",
  56. description:"Command should be emulated but is not implemented",
  57. standard:"other"},
  58. {
  59. name:"SIGFPE",
  60. number:8,
  61. action:"core",
  62. description:"Floating point arithmetic error",
  63. standard:"ansi"},
  64. {
  65. name:"SIGKILL",
  66. number:9,
  67. action:"terminate",
  68. description:"Forced termination",
  69. standard:"posix",
  70. forced:true},
  71. {
  72. name:"SIGUSR1",
  73. number:10,
  74. action:"terminate",
  75. description:"Application-specific signal",
  76. standard:"posix"},
  77. {
  78. name:"SIGSEGV",
  79. number:11,
  80. action:"core",
  81. description:"Segmentation fault",
  82. standard:"ansi"},
  83. {
  84. name:"SIGUSR2",
  85. number:12,
  86. action:"terminate",
  87. description:"Application-specific signal",
  88. standard:"posix"},
  89. {
  90. name:"SIGPIPE",
  91. number:13,
  92. action:"terminate",
  93. description:"Broken pipe or socket",
  94. standard:"posix"},
  95. {
  96. name:"SIGALRM",
  97. number:14,
  98. action:"terminate",
  99. description:"Timeout or timer",
  100. standard:"posix"},
  101. {
  102. name:"SIGTERM",
  103. number:15,
  104. action:"terminate",
  105. description:"Termination",
  106. standard:"ansi"},
  107. {
  108. name:"SIGSTKFLT",
  109. number:16,
  110. action:"terminate",
  111. description:"Stack is empty or overflowed",
  112. standard:"other"},
  113. {
  114. name:"SIGCHLD",
  115. number:17,
  116. action:"ignore",
  117. description:"Child process terminated, paused or unpaused",
  118. standard:"posix"},
  119. {
  120. name:"SIGCLD",
  121. number:17,
  122. action:"ignore",
  123. description:"Child process terminated, paused or unpaused",
  124. standard:"other"},
  125. {
  126. name:"SIGCONT",
  127. number:18,
  128. action:"unpause",
  129. description:"Unpaused",
  130. standard:"posix",
  131. forced:true},
  132. {
  133. name:"SIGSTOP",
  134. number:19,
  135. action:"pause",
  136. description:"Paused",
  137. standard:"posix",
  138. forced:true},
  139. {
  140. name:"SIGTSTP",
  141. number:20,
  142. action:"pause",
  143. description:"Paused using CTRL-Z or \"suspend\"",
  144. standard:"posix"},
  145. {
  146. name:"SIGTTIN",
  147. number:21,
  148. action:"pause",
  149. description:"Background process cannot read terminal input",
  150. standard:"posix"},
  151. {
  152. name:"SIGBREAK",
  153. number:21,
  154. action:"terminate",
  155. description:"User interruption with CTRL-BREAK",
  156. standard:"other"},
  157. {
  158. name:"SIGTTOU",
  159. number:22,
  160. action:"pause",
  161. description:"Background process cannot write to terminal output",
  162. standard:"posix"},
  163. {
  164. name:"SIGURG",
  165. number:23,
  166. action:"ignore",
  167. description:"Socket received out-of-band data",
  168. standard:"bsd"},
  169. {
  170. name:"SIGXCPU",
  171. number:24,
  172. action:"core",
  173. description:"Process timed out",
  174. standard:"bsd"},
  175. {
  176. name:"SIGXFSZ",
  177. number:25,
  178. action:"core",
  179. description:"File too big",
  180. standard:"bsd"},
  181. {
  182. name:"SIGVTALRM",
  183. number:26,
  184. action:"terminate",
  185. description:"Timeout or timer",
  186. standard:"bsd"},
  187. {
  188. name:"SIGPROF",
  189. number:27,
  190. action:"terminate",
  191. description:"Timeout or timer",
  192. standard:"bsd"},
  193. {
  194. name:"SIGWINCH",
  195. number:28,
  196. action:"ignore",
  197. description:"Terminal window size changed",
  198. standard:"bsd"},
  199. {
  200. name:"SIGIO",
  201. number:29,
  202. action:"terminate",
  203. description:"I/O is available",
  204. standard:"other"},
  205. {
  206. name:"SIGPOLL",
  207. number:29,
  208. action:"terminate",
  209. description:"Watched event",
  210. standard:"other"},
  211. {
  212. name:"SIGINFO",
  213. number:29,
  214. action:"ignore",
  215. description:"Request for process information",
  216. standard:"other"},
  217. {
  218. name:"SIGPWR",
  219. number:30,
  220. action:"terminate",
  221. description:"Device running out of power",
  222. standard:"systemv"},
  223. {
  224. name:"SIGSYS",
  225. number:31,
  226. action:"core",
  227. description:"Invalid system call",
  228. standard:"other"},
  229. {
  230. name:"SIGUNUSED",
  231. number:31,
  232. action:"terminate",
  233. description:"Invalid system call",
  234. standard:"other"}];exports.SIGNALS=SIGNALS;
  235. //# sourceMappingURL=core.js.map