boinc/lib/shmem_test.C

29 lines
539 B
C

// test program for shmem functions
// -a attach and sleep
// -d destroy
// -c create
#define KEY 0xbeefcafe
#include <string.h>
#include <stdio.h>
#include <sys/wait.h>
#include <unistd.h>
#include "shmem.h"
main(int argc, char** argv) {
void* p;
int retval;
if (!strcmp(argv[1], "-a")) {
retval = attach_shmem(KEY, &p);
sleep(60);
} else if (!strcmp(argv[1], "-d")) {
destroy_shmem(KEY);
} else if (!strcmp(argv[1], "-c")) {
create_shmem(KEY, 100, &p);
}
}