#include "rcsvers.hh"#include <string.h>#include <stdlib.h>Include dependency graph for rcsvers.c:

Go to the source code of this file.
Defines | |
| #define | NO_DBG_MEM |
| #define | darwin_static |
Functions | |
| void | cms_print_servers (void) |
| int | nml_print_diag_list (void) |
| void | print_etime (void) |
| int | rcs_print (char *_fmt,...) |
| void | print_rcs_version () |
| int | rcsinfo (void) |
| int | rcs_info (void) |
Variables | |
| int | rcs_version_printed = 0 |
| const int | rcs_major_version_number = RCS_MAJOR_VERSION |
| const int | rcs_minor_version_number = RCS_MINOR_VERSION |
| darwin_static const char * | rcs_version_info_string = "@(#)" " $Info: RCS_LIBRARY_VERSION " RCS_VERSION " Compiled on " __DATE__ " at " __TIME__ " for the " PLATNAME " platform. $ \n" |
| darwin_static const char * | rcs_version_string |
|
|
|
|
|
|
|
|
|
|
|
Definition at line 133 of file nmldiag.cc. 00134 {
00135 if (NULL != NML_Main_Channel_List)
00136 {
00137 NML *nml = (NML *) NML_Main_Channel_List->get_head ();
00138 while (NULL != nml)
00139 {
00140 if (NULL != nml->cms)
00141 {
00142 if (!nml->cms->enable_diagnostics)
00143 {
00144 nml = (NML *) NML_Main_Channel_List->get_next ();
00145 continue;
00146 }
00147 rcs_print ("\n*********************************************\n");
00148 if (NULL != nml->cms->BufferName)
00149 {
00150 rcs_print ("* Buffer Name: %s\n", nml->cms->BufferName);
00151 }
00152 NML_DIAGNOSTICS_INFO *ndi = nml->get_diagnostics_info ();
00153 if (NULL != ndi)
00154 {
00155 ndi->print ();
00156 }
00157 rcs_print ("*********************************************\n\n");
00158 }
00159 nml = (NML *) NML_Main_Channel_List->get_next ();
00160 }
00161 }
00162 return (0);
00163 }
|
|
|
Definition at line 498 of file _timer.c. 00499 {
00500 printf ("etime = %f\n", etime ());
00501 }
|
|
||||||||||||
|
|
Definition at line 49 of file rcsvers.c. Referenced by NML::print_info(), rcs_version_info_string(), and rcsinfo().
00050 {
00051 rcs_version_printed = 1;
00052 #ifndef rtlinux
00053 rcs_print((char *) rcs_version_info_string);
00054 #endif
00055 }
|
|
|
Definition at line 100 of file rcsvers.c. Referenced by rcs_info(), and rcs_version_info_string().
00101 {
00102 print_rcs_version();
00103 cms_print_servers();
00104 print_etime();
00105 nml_print_diag_list();
00106 #ifdef VXWORKS
00107 rcs_shm_table_print();
00108 rcs_sem_table_print();
00109 #endif
00110 return(0);
00111 }
|
|
|
Definition at line 117 of file rcsvers.c. 00118 {
00119 return rcsinfo();
00120 }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001