#include #include #include /* exit() */ #include /* herror() */ #include /* gethostbyname() */ #include /* bind() accept() */ #include /* bind() accept() */ #include #include "papi.h" #include "papi_test.h" #define PORT 3490 #define NUM_EVENTS 6 main(int argc, char *argv[]) { int Events[NUM_EVENTS]; const char* names[NUM_EVENTS] = {"RECV_CALLS", "RECV_BYTES", "RECV_USEC", "RECV_ERR", "RECV_INTERRUPTED", "RECV_WOULD_BLOCK"}; long long values[NUM_EVENTS]; /* Set TESTS_QUIET variable */ tests_quiet( argc, argv ); int version = PAPI_library_init (PAPI_VER_CURRENT); if (version != PAPI_VER_CURRENT) { fprintf(stderr, "PAPI_library_init version mismatch\n"); exit(1); } if (!TESTS_QUIET) printf("This program will listen on port 3490, and write data received to standard output\n"); int retval; int e; for (e=0; e 0) { write(1, buf, bytes); } close(n_sockfd); /* Stop counting events */ if (PAPI_stop_counters(values, NUM_EVENTS) != PAPI_OK) { fprintf(stderr, "Error in PAPI_stop_counters\n"); } if (!TESTS_QUIET) { printf("----\n"); for (e=0; e