aboutsummaryrefslogtreecommitdiff
path: root/tests/semconfig.h
blob: 2878dbef9d688e1c6111724457911aacb8f9df90 (plain)
1
2
3
4
5
6
7
8
9
#ifndef CONFIG_H
#define CONFIG_H 1

#define LOG(text) printf("%s\n", text);
#define CMD(cmd) LOG(cmd); cmd;
#define TESTSEM "/testsem"
#define CNTSEM "/testcnt"

#endif