mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: fork() and wait()
This commit is contained in:

committed by
Alexander Medvednikov

parent
48f841bb26
commit
436d7592c7
@ -33,3 +33,26 @@ fn test_write_and_read_string_to_file() {
|
||||
|
||||
os.rm(filename)
|
||||
}
|
||||
|
||||
//fn test_fork() {
|
||||
// pid := os.fork()
|
||||
// if pid == 0 {
|
||||
// println('Child')
|
||||
// }
|
||||
// else {
|
||||
// println('Parent')
|
||||
// }
|
||||
//}
|
||||
|
||||
//fn test_wait() {
|
||||
// pid := os.fork()
|
||||
// if pid == 0 {
|
||||
// println('Child')
|
||||
// exit(0)
|
||||
// }
|
||||
// else {
|
||||
// cpid := os.wait()
|
||||
// println('Parent')
|
||||
// println(cpid)
|
||||
// }
|
||||
//}
|
||||
|
Reference in New Issue
Block a user