Skip to content

Round robin scheduler #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dscheck.opam
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ bug-reports: "https://github.com/ocaml-multicore/dscheck/issues"
depends: [
"ocaml" {>= "5.0.0"}
"dune" {>= "2.9"}
"containers"
"oseq"
"odoc" {with-doc}
]
build: [
Expand Down
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
(generate_opam_files true)

(name dscheck)
(source (github sadiqj/dscheck))
(source (github ocaml-multicore/dscheck))
(authors "Sadiq Jaffer")
(maintainers "Sadiq Jaffer")

(package
(name dscheck)
(synopsis "Traced Atomics")
(depends (ocaml (>= 5.0.0)) dune containers oseq))
(depends (ocaml (>= 5.0.0)) dune))

3 changes: 1 addition & 2 deletions src/dune
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
(library
(public_name dscheck)
(libraries containers oseq))
(public_name dscheck))
Loading