-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
58 lines (41 loc) · 1.78 KB
/
README.Rmd
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
48
49
50
51
52
53
54
55
56
57
58
---
output: downlit::readme_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
pkgload::load_all()
```
# procmaps
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![R build status](https://github.com/r-prof/procmaps/workflows/rcc/badge.svg)](https://github.com/r-prof/procmaps/actions)
[![Codecov test coverage](https://codecov.io/gh/r-prof/procmaps/branch/main/graph/badge.svg)](https://app.codecov.io/gh/r-prof/procmaps?branch=main)
[![CRAN status](https://www.r-pkg.org/badges/version/procmaps)](https://CRAN.R-project.org/package=procmaps)
<!-- badges: end -->
The goal of procmaps is to help determine which library or other region is mapped to a specific address of a process.
It is the equivalent of `/proc/self/maps` as a data frame, and is designed to work on all major platforms.
## Installation
You can install the released version of procmaps from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("procmaps")
```
## Example
This is what `/proc/self/maps` looks like (on Linux) when this document is rendered:
```{bash}
cat /proc/self/maps
```
Other operating systems make this information available in other form.
This package provides the equivalent as a data frame, regardless of operating system:
```{r}
library(procmaps)
procmap_get()
```
---
## Code of Conduct
Please note that the procmaps project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.