-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0ec42f
commit 350e67c
Showing
30 changed files
with
3,540 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: ps | ||
Title: List, Query, Manipulate System Processes | ||
Version: 1.7.6 | ||
Version: 1.8.1 | ||
Authors@R: c( | ||
person("Jay", "Loden", role = "aut"), | ||
person("Dave", "Daeschler", role = "aut"), | ||
|
@@ -16,19 +16,19 @@ BugReports: https://github.com/r-lib/ps/issues | |
Depends: R (>= 3.4) | ||
Imports: utils | ||
Suggests: callr, covr, curl, pillar, pingr, processx (>= 3.1.0), R6, | ||
rlang, testthat (>= 3.0.0), webfakes | ||
rlang, testthat (>= 3.0.0), webfakes, withr | ||
Biarch: true | ||
Config/Needs/website: tidyverse/tidytemplate | ||
Config/testthat/edition: 3 | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.2 | ||
NeedsCompilation: yes | ||
Packaged: 2024-01-18 06:13:01 UTC; gaborcsardi | ||
Packaged: 2024-10-28 21:43:41 UTC; gaborcsardi | ||
Author: Jay Loden [aut], | ||
Dave Daeschler [aut], | ||
Giampaolo Rodola' [aut], | ||
Gábor Csárdi [aut, cre], | ||
Posit Software, PBC [cph, fnd] | ||
Maintainer: Gábor Csárdi <[email protected]> | ||
Repository: CRAN | ||
Date/Publication: 2024-01-18 06:40:02 UTC | ||
Date/Publication: 2024-10-28 22:10:02 UTC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
call_with_cleanup <- function(ptr, ...) { | ||
.Call(cleancall_call, pairlist(ptr, ...), parent.frame()) | ||
} |
Oops, something went wrong.