summaryrefslogtreecommitdiff
path: root/tools/hi-test.c
blob: d74b3c99429019bbad96191374f800f59f24d873 (plain)
1
2
3
4
5
6
7
8
9
10
11

#include <iostream>
#include <stdlib.h>

using namespace std;
int main(){
  cerr << "++++ hi-test pid: " << getpid() << "  group: " << getpgid(0);
  char* foo = getenv("HI_Q_GROUP");
  if (foo) cerr << " HI_Q_GROUP: " << foo;
  cerr << endl;
}