Commit 4801a9ec authored by Ramon Nou's avatar Ramon Nou Committed by Ramon Nou
Browse files

Updating tests, to remove 10000 check

parent 1b245cd7
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -533,43 +533,28 @@ destroy_libc() {

void
at_fork() {
  //  printf("%d ->At fork, %d\n", gettid(), CTX->interception_enabled());
    destroy_libc();
}
void
at_parent() {
 //   printf("%d ->At fork parent %d\n", gettid(), CTX->interception_enabled());
    init_libc();
  //  printf("%d -> x At fork parent %d\n", gettid(),
  //         CTX->interception_enabled());
}

void
at_child() {

  //  printf("%d ->At fork child %d\n", gettid(), CTX->interception_enabled());
    init_libc();
  //  printf("%d -> x At fork child %d\n", gettid(), CTX->interception_enabled());
}


void
at_fork_syscall() {
  //  printf("%d ->At fork, %d\n", gettid(), CTX->interception_enabled());
    destroy_preload();
}
void
at_parent_syscall() {
  //  printf("%d ->At fork parent %d\n", gettid(), CTX->interception_enabled());
    init_preload();
   // printf("%d -> x At fork parent %d\n", gettid(),
     //      CTX->interception_enabled());
}

void
at_child_syscall() {

  //  printf("%d ->At fork child %d\n", gettid(), CTX->interception_enabled());
    init_preload();
  //  printf("%d -> x At fork child %d\n", gettid(), CTX->interception_enabled());
}