blob: 208fb740d7ae370d71d897adee9aab0247dfff7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
%module locking
%{
#define SWIG_FILE_WITH_INIT
#include "sharedres.h"
%}
%newobject task_fair_mutex_bounds;
%newobject task_fair_rw_bounds;
%newobject phase_fair_rw_bounds;
%newobject global_omlp_bounds;
%newobject global_fmlp_bounds;
%newobject part_omlp_bounds;
%newobject clustered_omlp_bounds;
%newobject clustered_rw_omlp_bounds;
%newobject part_fmlp_bounds;
%newobject mpcp_bounds;
%newobject dpcp_bounds;
%include "sharedres_types.i"
#include "sharedres.h"
|