For a vector of paths, checks if the basename matches libR
or R
.
This is useful to detect the addresses occupied by R itself.
path_is_libr(path)
path_is_libr(path)
path |
A character vector of paths |
A logical vector of the same length as path
.
map <- procmap_get() path_is_libr(map$pathname)
map <- procmap_get() path_is_libr(map$pathname)
Returns the address space map of a process as a data frame.
procmap_get(..., as_tibble = NULL)
procmap_get(..., as_tibble = NULL)
... |
Reserved for future extensions, must be empty. |
as_tibble |
When using in a package, set to |
A data frame or tibble, depending on the as_tibble
argument.
procmap_get()
procmap_get()