Skip to content

Commit

Permalink
Ensure that all intercepted C functions and types are encapsulated in…
Browse files Browse the repository at this point in the history
… extern C
  • Loading branch information
lukemartinlogan committed Oct 18, 2022
1 parent b594993 commit 8c86d97
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 506 deletions.
5 changes: 4 additions & 1 deletion adapter/adapter_generator/mpiio.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@

includes = [
"<mpi.h>",
"<mpio.h>"
"<mpio.h>",
"\"interceptor.h\"",
"\"filesystem/filesystem.h\"",
"\"filesystem/metadata_manager.h\""
]

ApiClass("mpiio", apis, includes)
5 changes: 4 additions & 1 deletion adapter/adapter_generator/stdio.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@
]

includes = [
"\"cstdio.h\""
"<cstdio>",
"\"interceptor.h\"",
"\"filesystem/filesystem.h\"",
"\"filesystem/metadata_manager.h\""
]

ApiClass("stdio", apis, includes)
Loading

0 comments on commit 8c86d97

Please sign in to comment.