frontend/.pnpm-store/v3/files/a3/24ccdb15f603b289846e523d6619dd6b6d13afbc604d7261309313d0ff3f24deb8d5891662cd2f5cb870a9edadc36b180a13d66e209a58c553762809ccf464

19 lines
411 B
Plaintext

export const getRealtimeSignals=function(){
const length=SIGRTMAX-SIGRTMIN+1;
return Array.from({length},getRealtimeSignal);
};
const getRealtimeSignal=function(value,index){
return{
name:`SIGRT${index+1}`,
number:SIGRTMIN+index,
action:"terminate",
description:"Application-specific signal (realtime)",
standard:"posix"};
};
const SIGRTMIN=34;
export const SIGRTMAX=64;
//# sourceMappingURL=realtime.js.map