81 lines
4.2 KiB
C
Executable file
81 lines
4.2 KiB
C
Executable file
/************************************************************************/
|
|
/* */
|
|
/* ***** ***** */
|
|
/* ***** ***** */
|
|
/* ***** ***** */
|
|
/* ***** ***** */
|
|
/* *************** *************** */
|
|
/* ***************** ***************** */
|
|
/* *************** *************** */
|
|
/* ***** ***** TheNetNode */
|
|
/* ***** ***** Portable */
|
|
/* ***** ***** Network */
|
|
/* ***** ***** Software */
|
|
/* */
|
|
/* File include/profiler.h (maintained by: DL1XAO) */
|
|
/* */
|
|
/* This file is part of "TheNetNode" - Software Package */
|
|
/* */
|
|
/* Copyright (C) 1998 - 2008 NORD><LINK e.V. Braunschweig */
|
|
/* */
|
|
/* This program is free software; you can redistribute it and/or modify */
|
|
/* it under the terms of the NORD><LINK ALAS (Allgemeine Lizenz fuer */
|
|
/* Amateurfunk Software) as published by Hans Georg Giese (DF2AU) */
|
|
/* on 13/Oct/1992; either version 1, or (at your option) any later */
|
|
/* version. */
|
|
/* */
|
|
/* This program is distributed WITHOUT ANY WARRANTY only for further */
|
|
/* development and learning purposes. See the ALAS (Allgemeine Lizenz */
|
|
/* fuer Amateurfunk Software). */
|
|
/* */
|
|
/* You should have received a copy of the NORD><LINK ALAS (Allgemeine */
|
|
/* Lizenz fuer Amateurfunk Software) along with this program; if not, */
|
|
/* write to NORD><LINK e.V., Hinter dem Berge 5, D-38108 Braunschweig */
|
|
/* */
|
|
/* Dieses Programm ist PUBLIC DOMAIN, mit den Einschraenkungen durch */
|
|
/* die ALAS (Allgemeine Lizenz fuer Amateurfunk Software), entweder */
|
|
/* Version 1, veroeffentlicht von Hans Georg Giese (DF2AU), */
|
|
/* am 13.Oct.1992, oder (wenn gewuenscht) jede spaetere Version. */
|
|
/* */
|
|
/* Dieses Programm wird unter Haftungsausschluss vertrieben, aus- */
|
|
/* schliesslich fuer Weiterentwicklungs- und Lehrzwecke. Naeheres */
|
|
/* koennen Sie der ALAS (Allgemeine Lizenz fuer Amateurfunk Software) */
|
|
/* entnehmen. */
|
|
/* */
|
|
/* Sollte dieser Software keine ALAS (Allgemeine Lizenz fuer Amateur- */
|
|
/* funk Software) beigelegen haben, wenden Sie sich bitte an */
|
|
/* NORD><LINK e.V., Hinter dem Berge 5, D-38108 Braunschweig */
|
|
/* */
|
|
/************************************************************************/
|
|
|
|
|
|
#ifndef PROFILING
|
|
#define PROFILE(V,N,R) dbg(N);R()
|
|
#define prof_start(x)
|
|
#define prof_stop(x)
|
|
#else
|
|
#define PROFILE(V,N,R) prof_start(V);dbg(N);R();prof_stop(V)
|
|
|
|
void ccp_profile(void);
|
|
|
|
void prof_start(int num);
|
|
void prof_stop(int num);
|
|
|
|
enum { PROF_L2, PROF_L3RX, PROF_L7RX, PROF_TIM, PROF_IP, PROF_L4,
|
|
PROF_L3, PROF_L7TX, PROF_L4TX, PROF_L3TX, PROF_L1,
|
|
#ifdef PACSAT
|
|
PROF_PAC,
|
|
#endif
|
|
#ifndef MC68K
|
|
PROF_UPD,
|
|
#endif
|
|
#ifdef TCP_STACK
|
|
PROF_STACK,
|
|
#endif /* TCP_STACK */
|
|
|
|
#ifdef L1TCPIP
|
|
PROF_TCPIP,
|
|
#endif /* L1TCPIP */
|
|
PROF_SUM };
|
|
|
|
#endif
|