This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Percent | Source code & Disassembly of rev26_2 | |
------------------------------------------------ | |
: | |
: | |
: | |
: Disassembly of section .text: | |
: | |
: 0000000000400760 <paws>: | |
: void paws() { | |
: #ifdef USE_A_POSIX_BARRIER |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdlib.h> | |
#include <unistd.h> | |
#include <stdio.h> | |
#include <fcntl.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
int run(char **argv, char **envp) { | |
pid_t chipr = fork(); | |
if (chipr == 0) { |
NewerOlder