versadac  1
versadac - Scalable Recorder Firmware
bspErrorLog.h
1 /*******************************************************************************
2 FILE : bspErrorLog.h
3 VERSION : $Id: bspErrorLog.h 4987 2006-10-11 14:49:51Z martinto $
4 SYSTEM : Gnu C C++ for PowerPC under vxWorks & Microsoft Visual C
5 DESCRIPTION : Routines to append message to error log file.
6 
7 *******************************************************************************/
8 
9 #ifndef __BSP_ERROR_LOG_H
10 #define __BSP_ERROR_LOG_H
11 
12 extern void bspErrorLog( const char * msg );
13  /* Appends new time-stamped message to error log */
14 
15 extern void bspErrorAppend( const char * msg );
16  /* Appends continuation of error last written in bspErrorLog() */
17 
18 #endif /* __BSP_ERROR_LOG_H */