mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: add support for signal handling on JS backend (#12818)
This commit is contained in:
@ -136,3 +136,7 @@ pub fn getuid() int {
|
||||
pub fn execvp(cmd string, args []string) ? {
|
||||
panic('os.execvp() is not available on JS backend')
|
||||
}
|
||||
|
||||
pub fn stdin_resume() {
|
||||
#$process.stdin.resume();
|
||||
}
|
||||
|
Reference in New Issue
Block a user