Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capture new PID from fork #7

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions p-allocator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,19 @@ extern uint8_t end[];
uint8_t* heap_top;
uint8_t* stack_bottom;

// turn off optimization to facilitate debugging of forking new copies
#pragma GCC push_options
#pragma GCC optimize ("O0")

void process_main() {
sys_kdisplay(KDISPLAY_MEMVIEWER);

// Fork three new copies. (But ignore failures.)
(void) sys_fork();
(void) sys_fork();
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-variable"
pid_t pid1 = sys_fork();
pid_t pid2 = sys_fork();
#pragma GCC diagnostic pop

pid_t p = sys_getpid();
srand(p);
Expand Down Expand Up @@ -48,3 +55,5 @@ void process_main() {
sys_yield();
}
}

#pragma GCC pop_options