installed event rate test

This commit is contained in:
Jeff Hill
2001-01-27 00:07:52 +00:00
parent 1e63230768
commit 79f66abba3
3 changed files with 97 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
#include <stdio.h>
#include <stdlib.h>
void caEventRate ( const char *pName );
int main ( int argc, char **argv )
{
if ( argc < 2 || argc > 2 ) {
printf ( "usage: %s < chan name >\n", argv[0] );
}
caEventRate ( argv[1] );
return 0;
}