-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
47 lines (47 loc) · 1.73 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Package: procmaps
Title: Portable Address Space Mapping
Version: 0.0.5.9009
Date: 2024-11-11
Authors@R:
c(person(given = "Kirill",
family = "M\u00fcller",
role = c("aut", "cre"),
email = "kirill@cynkra.com",
comment = c(ORCID = "0000-0002-1416-3412")),
person(given = "R Consortium",
role = "fnd"),
person(given = "Kostya",
family = "Serebryany",
role = "ctb",
comment = "Bundled gperftools library"),
person(given = "Sanjay",
family = "Ghemawat",
role = "ctb",
comment = "Bundled gperftools library"),
person(given = "Craig",
family = "Silverstein",
role = "ctb",
comment = "Bundled gperftools library"),
person(family = "Google Inc.",
role = "cph",
comment = "Bundled gperftools library"))
Description: Portable '/proc/self/maps' as a data frame.
Determine which library or other region is mapped to a specific
address of a process. --
R packages can contain native code, compiled to shared libraries at build or
installation time.
When loaded, each shared library occupies a portion of the address space of
the main process.
When only a machine instruction pointer is available (e.g. from a backtrace
during error inspection or profiling), the address space map determines
which library this instruction pointer corresponds to.
License: GPL-3
URL: https://r-prof.github.io/procmaps/, https://github.com/r-prof/procmaps
BugReports: https://github.com/r-prof/procmaps/issues
Suggests:
covr,
testthat,
tibble
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2.9000