-->
当前位置:首页 > Luz 第6016页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:As default, if a system call fails, it will return ___.

Luz5年前 (2021-05-10)628
As default, if a system call fails, it will return ___.@[D](1)A. 0 B. 1C. a positive integer greater than 1 D.…

单选题:Consider the following code, how many “hello”s will be printed o

Luz5年前 (2021-05-10)671
Consider the following code, how many “hello”s will be printed out?@[C](1)```#include #include main(){ int i; f…

单选题:In Linux kernel, a child process created by the clone system cal

Luz5年前 (2021-05-10)546
In Linux kernel, a child process created by the clone system call cannot share __ with the parent process?@[B](1)A. a…

单选题:How many processes will be created when running the program gene

Luz5年前 (2021-05-10)598
How many processes will be created when running the program generated by the following C source codes? (including the fi…

单选题:The dup () system call in LINUX comes under __________.

Luz5年前 (2021-05-10)546
The dup () system call in LINUX comes under __________.@[B](1)A. process system callsB. file system callsC. communica…

单选题:```

Luz5年前 (2021-05-10)611
```#include int count = 0;int main(){ int *ptr = 0; int pid = getpid(); if (pid = fork()) { wait(…

单选题:```

Luz5年前 (2021-05-10)558
```#include int count = 0;int main(){ int *ptr = 0; int pid = getpid(); if (pid = fork()) { wait(…

单选题:Process A forks, creating process B. Process A then exits, as do

Luz5年前 (2021-05-10)594
Process A forks, creating process B. Process A then exits, as does its parent, and the parent of its parent, and the par…

单选题:```

Luz5年前 (2021-05-10)550
```#include int count = 0;int main(){ int *ptr = 0; int pid = getpid(); if (pid = fork()) { wait(…

单选题:```

Luz5年前 (2021-05-10)687
```#include int count = 0;int main(){ int *ptr = 0; int pid = getpid(); if (pid = fork()) { wait(…