1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
/* -*- c-file-style: "GNU" -*- */
/*
* Copyright (C) CNRS, INRIA, Université Bordeaux 1, Télécom SudParis
* See COPYING in top-level directory.
*/
#include <stdarg.h>
#include "hijacks.h"
void eztrace_code0(int code) {
switch (code) {
case 1:
hijack_foo_intro(42, 42);
return;
case 2:
hijack_foo_outro(42, 42, 84);
return;
case 3:
hijack_bar_intro();
return;
case 4:
hijack_bar_outro(42);
return;
}
}
void eztrace_generic(int code, int nb_args, ...) {
eztrace_code0(code);
}
|