diff options
author | midipix <writeonce@midipix.org> | 2017-01-18 02:15:45 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-01-18 02:15:45 -0500 |
commit | 9d2131a4dd7e9ba6e5e11becbfd8081a6fdcd15a (patch) | |
tree | 83a1519b48cfebd3e2e1d748f35103025e1f8e49 /include | |
parent | 6d58d975a6d69ffafe30f51ec83cccefbecd4883 (diff) | |
download | pemagine-9d2131a4dd7e9ba6e5e11becbfd8081a6fdcd15a.tar.bz2 pemagine-9d2131a4dd7e9ba6e5e11becbfd8081a6fdcd15a.tar.xz |
ldso: control inheritance and share access when opening image or parent dir.
Diffstat (limited to 'include')
-rw-r--r-- | include/pemagine/pemagine.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/pemagine/pemagine.h b/include/pemagine/pemagine.h index d5d0e66..d8d3159 100644 --- a/include/pemagine/pemagine.h +++ b/include/pemagine/pemagine.h @@ -202,7 +202,9 @@ pe_api int32_t pe_open_image_from_addr( void * addr, uintptr_t * buffer, uint32_t buffer_size, + uint32_t oattr, uint32_t desired_access, + uint32_t share_access, uint32_t open_options); @@ -211,7 +213,9 @@ pe_api int32_t pe_open_physical_parent_directory( void * href, uintptr_t * buffer, uint32_t buffer_size, + uint32_t oattr, uint32_t desired_access, + uint32_t share_access, uint32_t open_options); |