Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3007 → Rev 3008

/branches/tracing/uspace/app/debug/fib_synch.c
File deleted
/branches/tracing/uspace/app/debug/fib_synch.h
File deleted
/branches/tracing/uspace/app/debug/main.c
48,7 → 48,6
#include "dthread.h"
#include "breakpoint.h"
#include "include/arch.h"
#include "fib_synch.h"
#include "main.h"
 
void thread_debug_start(unsigned thread_hash);
68,8 → 67,6
 
volatile int paused;
 
fcv_t go_cv;
 
static void command_split(char *cmd_str)
{
char *p = cmd_str;
391,8 → 388,6
list_initialize(&dthreads);
breakpoint_init();
cwt = NULL;
 
fcv_init(&go_cv);
}
 
int main(void)
/branches/tracing/uspace/app/debug/main.h
39,11 → 39,9
#include <libadt/list.h>
 
#include "include/arch/types.h"
#include "fib_synch.h"
#include "breakpoint.h"
 
extern int app_phone;
extern fcv_t go_cv;
 
void breakpoint_hit(breakpoint_t *b);
void singlestep_hit(void);
/branches/tracing/uspace/app/debug/Makefile
44,7 → 44,6
 
OUTPUT = debug
GENERIC_SOURCES = cmd.c \
fib_synch.c \
cons.c \
dthread.c \
breakpoint.c \