Skip to content

Commit

Permalink
added SharedVector
Browse files Browse the repository at this point in the history
  • Loading branch information
msupernaw committed Nov 11, 2023
1 parent ac3b682 commit 2c0e136
Show file tree
Hide file tree
Showing 7 changed files with 852 additions and 77 deletions.
12 changes: 12 additions & 0 deletions R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ readEnvironmentFromSharedMemory <- function(shared_memory_name) {
.Call(`_processR_readEnvironmentFromSharedMemory`, shared_memory_name)
}

CreateSharedEnvironment <- function(name) {
.Call(`_processR_CreateSharedEnvironment`, name)
}

CreateSharedEnvironmentNoReturn <- function(name) {
invisible(.Call(`_processR_CreateSharedEnvironmentNoReturn`, name))
}

readSharedEnvironment <- function(name) {
.Call(`_processR_readSharedEnvironment`, name)
}

RunProcess <- function(fun, env) {
invisible(.Call(`_processR_RunProcess`, fun, env))
}
Expand Down
Loading

0 comments on commit 2c0e136

Please sign in to comment.