/*
 * tasks.c
 *
 * Written by Vicente Esteve LLoret <viesllo@inf.upv.es>
 * Copyright (C) Feb, 2003 OCERA Consortium.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation version 2.
 *
 * StandAlone RTLinux Tracer.
 * Here only Tracebuf definition , all job is done 
 * in include/arch/rtl_tracer.h
 * 
 */



#include <rtl_conf.h>

// Tracer Resides in include/arch directory
// Here only Buffer definitions.

#if CONFIG_RTL_TRACER

unsigned long long tracerbuf[CONFIG_RTL_TRACER_EVENTS];

unsigned long *tracer_ptr = &tracerbuf[0];

#endif






