58 lines
1.0 KiB
C
58 lines
1.0 KiB
C
/*
|
|
* core/utils.c
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
extern int verbosity;
|
|
|
|
/* --------------------------------------------------------------- */
|
|
int seed_my_rand(int foo)
|
|
{
|
|
long v1, v2;
|
|
|
|
v1 = getpid(); v2 = time(NULL);
|
|
|
|
return v1 ^ v2;
|
|
}
|
|
/* --------------------------------------------------------------- */
|
|
int random1000(int type)
|
|
{
|
|
int value;
|
|
|
|
#if DEBUG_LEVEL > 1
|
|
fprintf(stderr, ">>> %s(%d)\n", __func__, type);
|
|
#endif
|
|
|
|
switch (type) {
|
|
case 0:
|
|
value = rand() % 1000;
|
|
break;
|
|
case 1:
|
|
value = (rand()%1000 + rand()%1000) / 2;
|
|
break;
|
|
default:
|
|
value = -1;
|
|
break;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
/* --------------------------------------------------------------- */
|
|
double dtime(void)
|
|
{
|
|
struct timeval tv;
|
|
int foo;
|
|
|
|
foo = gettimeofday(&tv, NULL);
|
|
if (foo) fprintf(stderr, "got %d in %s\n", foo, __func__);
|
|
|
|
return (double)tv.tv_sec + (double)tv.tv_usec / 1e6;
|
|
}
|
|
/* --------------------------------------------------------------- */
|