this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix 'ps' output

+1
+1
src/kernel/emulation/linux/misc/sysctl_proc.c
··· 377 377 *buflen = totallen; 378 378 memcpy(buf, &argc, sizeof(argc)); 379 379 strcpy(buf+sizeof(argc), cmdline); // copy arg0 as executable_path (TODO: not 100% correct) 380 + buf[sizeof(argc)+arg0len+1] = 0; 380 381 buf[sizeof(argc)+arg0len+2] = 0; 381 382 memcpy(buf+sizeof(argc)+arg0len+2, cmdline, argslen+1); 382 383 }