change signum to signame

This commit is contained in:
sawka
2022-09-06 16:42:21 -07:00
parent 8801ab147b
commit 400815a622
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -149,7 +149,6 @@ class Cmd {
}
handleKey(event : any) {
console.log("onkey", event);
if (!this.isRunning()) {
return;
}
@@ -1249,6 +1248,7 @@ class Model {
}
cmdStatusUpdate(sessionId : string, cmdId : string, origStatus : string, newStatus : string) {
// TODO force recompute usedrows in terminal when status changes to done
console.log("cmd status", sessionId, cmdId, origStatus, "=>", newStatus);
}
+1 -1
View File
@@ -169,7 +169,7 @@ type FeInputPacketType = {
ck : string,
remote : RemotePtrType,
inputdata64? : string,
signum? : number,
signame? : string,
winsize? : TermWinSize,
};