OpenAFS
OpenAFS distributed network file system
|
00001 /* 00002 * Copyright 2000, International Business Machines Corporation and others. 00003 * All Rights Reserved. 00004 * 00005 * This software has been released under the terms of the IBM Public 00006 * License. For details, see the LICENSE file in the top-level source 00007 * directory or online at http://www.openafs.org/dl/license10.html 00008 */ 00009 00010 #ifndef _RX_TRACE 00011 #define _RX_TRACE 00012 00013 #ifndef RXDEBUG 00014 #define rxi_calltrace(a,b) 00015 #define rxi_flushtrace() 00016 #else 00017 extern void rxi_calltrace(unsigned int event, struct rx_call *call); 00018 extern void rxi_flushtrace(void); 00019 00020 #define RX_CALL_ARRIVAL 0 00021 #define RX_CALL_START 1 00022 #define RX_CALL_END 2 00023 #define RX_TRACE_DROP 3 00024 00025 #endif /* RXDEBUG */ 00026 00027 #endif /* _RX_TRACE */