source: CIVL/text/include/pthread.h@ e1b32beb

1.23 2.0 main test-branch
Last change on this file since e1b32beb was 23c8bc3, checked in by John Edenhofner <johneden@…>, 12 years ago

Reorganized files, implemented pthread_rwlock_t, modified headers etc.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1390 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100755
File size: 784 bytes
Line 
1/*
2 All specification references correspond to pages in the Standard for Information Technology
3Portable Operating System Interface (POSIX)IEEE Computer Society Base Specifications, Issue 7.
4
5Standard modifications to each translation:
6header files are altered
7errors are changed to assertion violations with appropriate messages
8appropriate definitions are changed to input variables
9*/
10
11#ifdef __PTHREAD__
12#else
13#define __PTHREAD__
14
15#include <civlc.cvh>
16#include <concurrency.cvh>
17#include <seq.cvh>
18#include <stdio.h>
19#include <stdlib.h>
20#include <assert.h>
21#include <stdbool.h>
22#include <pthread-types.cvl>
23#include <pthread-functions.cvl>
24#include <svcomp.cvl>
25
26int pthread_exit(void *value_ptr);
27
28void __VERIFIER_assume(void *p);
29
30void __VERIFIER_assert(_Bool value);
31
32
33#endif
Note: See TracBrowser for help on using the repository browser.