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

1.23 2.0 main test-branch
Last change on this file since dfb0fef 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
RevLine 
[b0dfafb]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
[8a9124e]11#ifdef __PTHREAD__
12#else
13#define __PTHREAD__
14
[e6b02c8]15#include <civlc.cvh>
[cc2ff44]16#include <concurrency.cvh>
[23c8bc3]17#include <seq.cvh>
[b0dfafb]18#include <stdio.h>
19#include <stdlib.h>
20#include <assert.h>
21#include <stdbool.h>
[23c8bc3]22#include <pthread-types.cvl>
23#include <pthread-functions.cvl>
24#include <svcomp.cvl>
[b0dfafb]25
[903c81e]26int pthread_exit(void *value_ptr);
27
[a6d5539]28void __VERIFIER_assume(void *p);
29
30void __VERIFIER_assert(_Bool value);
31
[903c81e]32
[8a9124e]33#endif
Note: See TracBrowser for help on using the repository browser.