~ubuntu-branches/debian/jessie/python-posix-ipc/jessie

« back to all changes in this revision

Viewing changes to prober/sniff_sem_getvalue.c

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2014-04-05 23:52:32 UTC
  • Revision ID: package-import@ubuntu.com-20140405235232-8exuqr3hqajg0x3k
Tags: upstream-0.9.8
ImportĀ upstreamĀ versionĀ 0.9.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdlib.h>
 
2
#include <semaphore.h>
 
3
 
 
4
int main(void) { 
 
5
    sem_getvalue(NULL, NULL);
 
6
    return 0; 
 
7
}
 
8