-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDESCRIPTION
33 lines (33 loc) · 1.01 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
Package: semaphore
Type: Package
Title: Shared Memory Atomic Operations
Version: 1.0.2.9000
Date: 2024-11-12
Authors@R: c(
person(
"Daniel P.", "Smith",
email = "[email protected]",
role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-2479-2044")),
person(
"Alkek Center for Metagenomics and Microbiome Research",
role = c("cph", "fnd") ))
Description: Implements named semaphores from the 'boost' 'C++' library
<https://www.boost.org/>. A semaphore object is shared amongst several
processes. This integer value can be safely incremented or decremented by
each processes. Processes can also wait (blocking) for the value to become
non-zero.
URL: https://cmmr.github.io/semaphore/, https://github.com/cmmr/semaphore
BugReports: https://github.com/cmmr/semaphore/issues
License: MIT + file LICENSE
Encoding: UTF-8
RoxygenNote: 7.3.2
Roxygen: list(markdown = TRUE)
Config/testthat/edition: 3
LinkingTo:
Rcpp,
BH
Imports:
Rcpp
Suggests:
testthat