[46ab782] | 1 | % Predefined journal names:
|
---|
| 2 | % acmcs: Computing Surveys acta: Acta Infomatica
|
---|
| 3 | % cacm: Communications of the ACM
|
---|
| 4 | % ibmjrd: IBM J. Research & Development ibmsj: IBM Systems Journal
|
---|
| 5 | % ieeese: IEEE Trans. on Soft. Eng. ieeetc: IEEE Trans. on Computers
|
---|
| 6 | % ieeetcad: IEEE Trans. on Computer-Aided Design of Integrated Circuits
|
---|
| 7 | % ipl: Information Processing Letters jacm: Journal of the ACM
|
---|
| 8 | % jcss: J. Computer & System Sciences scp: Science of Comp. Programming
|
---|
| 9 | % sicomp: SIAM J. on Computing tocs: ACM Trans. on Comp. Systems
|
---|
| 10 | % tods: ACM Trans. on Database Sys. tog: ACM Trans. on Graphics
|
---|
| 11 | % toms: ACM Trans. on Math. Software toois: ACM Trans. on Office Info. Sys.
|
---|
| 12 | % toplas: ACM Trans. on Prog. Lang. & Sys.
|
---|
| 13 | % tcs: Theoretical Computer Science
|
---|
| 14 | @string{ieeepds="IEEE Transactions on Parallel and Distributed Systems"}
|
---|
| 15 | @string{ieeese="IEEE Transactions on Software Engineering"}
|
---|
| 16 | @string{spe="Software---\-Practice and Experience"}
|
---|
| 17 | @string{sigplan="SIGPLAN Notices"}
|
---|
| 18 | @string{joop="Journal of Object-Oriented Programming"}
|
---|
| 19 | @string{popl="Conference Record of the ACM Symposium on Principles of Programming Languages"}
|
---|
| 20 | @string{osr="Operating Systems Review"}
|
---|
| 21 | @string{pldi="Programming Language Design and Implementation"}
|
---|
| 22 |
|
---|
[601bd9e] | 23 | @inproceedings{wolke17,
|
---|
[432e1de] | 24 | title={Locality-Guided Scheduling in {CAF}},
|
---|
[601bd9e] | 25 | author={W{\"o}lke, Sebastian and Hiesgen, Raphael and Charousset, Dominik and Schmidt, Thomas C},
|
---|
| 26 | booktitle={Proceedings of the 7th ACM SIGPLAN International Workshop on Programming Based on Actors, Agents, and Decentralized Control},
|
---|
| 27 | pages={11--20},
|
---|
| 28 | year={2017}
|
---|
[0faacb8] | 29 | }
|
---|
| 30 |
|
---|
[76e77a4] | 31 | @article{Roscoe88,
|
---|
[432e1de] | 32 | title={The Laws of {OCCAM} Programming},
|
---|
[76e77a4] | 33 | author={Roscoe, Andrew William and Hoare, Charles Antony Richard},
|
---|
| 34 | journal={Theoretical Computer Science},
|
---|
| 35 | volume={60},
|
---|
| 36 | number={2},
|
---|
| 37 | pages={177--229},
|
---|
| 38 | year={1988},
|
---|
| 39 | publisher={Elsevier}
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | @article{Pike84,
|
---|
[432e1de] | 43 | title={The UNIX System: The {Blit}: A Multiplexed Graphics Terminal},
|
---|
[76e77a4] | 44 | author={Pike, Rob},
|
---|
| 45 | journal={AT\&T Bell Laboratories Technical Journal},
|
---|
| 46 | volume={63},
|
---|
| 47 | number={8},
|
---|
| 48 | pages={1607--1631},
|
---|
| 49 | year={1984},
|
---|
| 50 | publisher={Nokia Bell Labs}
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | @inproceedings{Dice11,
|
---|
[432e1de] | 54 | title={Brief Announcement: Multilane-a Concurrent Blocking Multiset},
|
---|
[76e77a4] | 55 | author={Dice, David and Otenko, Oleksandr},
|
---|
| 56 | booktitle={Proceedings of the twenty-third annual ACM symposium on Parallelism in algorithms and architectures},
|
---|
| 57 | pages={313--314},
|
---|
| 58 | year={2011}
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 | @misc{go:chan,
|
---|
| 62 | author = "The Go Programming Language",
|
---|
| 63 | title = "src/runtime/chan.go",
|
---|
[cc28153d] | 64 | howpublished = {\url{https://go.dev/src/runtime/chan.go}},
|
---|
[76e77a4] | 65 | note = "[Online; accessed 23-May-2023]"
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | @misc{go:select,
|
---|
| 69 | author = "The Go Programming Language",
|
---|
[760c88c] | 70 | title = "src/runtime/select.go",
|
---|
[cc28153d] | 71 | howpublished = {\url{https://go.dev/src/runtime/select.go}},
|
---|
[76e77a4] | 72 | note = "[Online; accessed 23-May-2023]"
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[32a4f3e] | 75 | @misc{go:sched,
|
---|
| 76 | author = "The Go Programming Language",
|
---|
| 77 | title = "src/runtime/proc.go",
|
---|
[cc28153d] | 78 | howpublished = {\url{https://go.dev/src/runtime/proc.go}},
|
---|
[32a4f3e] | 79 | note = "[Online; accessed 23-May-2023]"
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[760c88c] | 82 | @misc{go:selectref,
|
---|
| 83 | author = "The Go Programming Language Specification",
|
---|
| 84 | title = "Select statements",
|
---|
[cc28153d] | 85 | howpublished = {\url{https://go.dev/ref/spec#Select\_statements}},
|
---|
[760c88c] | 86 | note = "[Online; accessed 23-May-2023]"
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | @misc{boost:channel,
|
---|
| 90 | author = "Boost C++ Libraries",
|
---|
| 91 | title = "experimental::basic\_concurrent\_channel",
|
---|
[cc28153d] | 92 | howpublished = {\url{https://www.boost.org/doc/libs/master/doc/html/boost\_asio/reference/experimental\__basic\_concurrent\_channel.html}},
|
---|
[760c88c] | 93 | note = "[Online; accessed 23-May-2023]"
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | @misc{rust:channel,
|
---|
| 97 | author = "The Rust Standard Library",
|
---|
| 98 | title = "std::sync::mpsc::sync\_channel",
|
---|
[cc28153d] | 99 | howpublished = {\url{https://doc.rust-lang.org/std/sync/mpsc/fn.sync\_channel.html}},
|
---|
[760c88c] | 100 | note = "[Online; accessed 23-May-2023]"
|
---|
| 101 | }
|
---|
| 102 |
|
---|
| 103 | @misc{rust:select,
|
---|
| 104 | author = "The Rust Standard Library",
|
---|
| 105 | title = "Macro futures::select",
|
---|
[cc28153d] | 106 | howpublished = {\url{https://docs.rs/futures/latest/futures/macro.select.html}},
|
---|
[760c88c] | 107 | note = "[Online; accessed 23-May-2023]"
|
---|
| 108 | }
|
---|
| 109 |
|
---|
[b3ac8ce3] | 110 | @misc{java:allof:anyof,
|
---|
| 111 | author = "Java Util Concurrent",
|
---|
| 112 | title = "Class CompletableFuture",
|
---|
| 113 | howpublished = {\url{https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html}},
|
---|
| 114 | note = "[Online; accessed 23-May-2023]"
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[760c88c] | 117 | @misc{ocaml:channel,
|
---|
| 118 | author = "The OCaml Manual",
|
---|
| 119 | title = "OCaml library : Event",
|
---|
[cc28153d] | 120 | howpublished = {\url{https://v2.ocaml.org/api/Event.html}},
|
---|
[760c88c] | 121 | note = "[Online; accessed 23-May-2023]"
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | @misc{haskell:channel,
|
---|
| 125 | author = "The Haskell Package Repository",
|
---|
| 126 | title = "Control.Concurrent.Chan",
|
---|
[cc28153d] | 127 | howpublished = {\url{https://hackage.haskell.org/package/base-4.18.0.0/docs/Control-Concurrent-Chan.html}},
|
---|
[760c88c] | 128 | note = "[Online; accessed 23-May-2023]"
|
---|
| 129 | }
|
---|
| 130 |
|
---|
| 131 | @misc{linux:select,
|
---|
| 132 | author = "Linux man pages",
|
---|
[7365248] | 133 | title = "select(2) - Linux manual page",
|
---|
[cc28153d] | 134 | howpublished = {\url{https://man7.org/linux/man-pages/man2/select.2.html}},
|
---|
[760c88c] | 135 | note = "[Online; accessed 23-May-2023]"
|
---|
| 136 | }
|
---|
| 137 |
|
---|
| 138 | @misc{linux:poll,
|
---|
| 139 | author = "Linux man pages",
|
---|
[7365248] | 140 | title = "poll(2) - Linux manual page",
|
---|
[cc28153d] | 141 | howpublished = {\url{https://man7.org/linux/man-pages/man2/poll.2.html}},
|
---|
[760c88c] | 142 | note = "[Online; accessed 23-May-2023]"
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | @misc{linux:epoll,
|
---|
| 146 | author = "Linux man pages",
|
---|
[7365248] | 147 | title = "epoll(7) - Linux manual page",
|
---|
[cc28153d] | 148 | howpublished = {\url{https://man7.org/linux/man-pages/man7/epoll.7.html}},
|
---|
[760c88c] | 149 | note = "[Online; accessed 23-May-2023]"
|
---|
| 150 | }
|
---|
| 151 |
|
---|
[c9019ce] | 152 | @misc{linux:iouring,
|
---|
| 153 | author = "Linux man pages",
|
---|
| 154 | title = "io\_uring(7) - Linux manual page",
|
---|
[cc28153d] | 155 | howpublished = {\url{https://man7.org/linux/man-pages/man7/io\_uring.7.html}},
|
---|
[c9019ce] | 156 | note = "[Online; accessed 23-May-2023]"
|
---|
| 157 | }
|
---|
| 158 |
|
---|
[760c88c] | 159 | @article{Ichbiah79,
|
---|
[432e1de] | 160 | title={Preliminary Ada Reference Manual},
|
---|
[760c88c] | 161 | author={Ichbiah, Jean D},
|
---|
| 162 | journal={ACM Sigplan Notices},
|
---|
| 163 | volume={14},
|
---|
| 164 | number={6a},
|
---|
| 165 | pages={1--145},
|
---|
| 166 | year={1979},
|
---|
| 167 | publisher={ACM New York, NY, USA}
|
---|
| 168 | }
|
---|
| 169 |
|
---|
| 170 | @misc{cpp:whenany,
|
---|
| 171 | author = "C++ reference",
|
---|
| 172 | title = "std::experimental::when\_any",
|
---|
[cc28153d] | 173 | howpublished = {\url{https://en.cppreference.com/w/cpp/experimental/when\_any}},
|
---|
[760c88c] | 174 | note = "[Online; accessed 23-May-2023]"
|
---|
| 175 | }
|
---|
| 176 |
|
---|
[c9019ce] | 177 | @techreport{wilson94,
|
---|
[432e1de] | 178 | title={The {SUIF} Compiler System: a Parallelizing and Optimizing Research Compiler},
|
---|
[c9019ce] | 179 | author={Wilson, Robert and French, Robert and Wilson, Christopher and Amarasinghe, Saman and Anderson, Jennifer and Tjiang, Steve and Liao, Shih-Wei and Tseng, Chau-Wen and Hall, Mary and Lam, Monica and others},
|
---|
| 180 | year={1994},
|
---|
| 181 | institution={Stanford University Technical Report No. CSL-TR-94-620}
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | @misc{haskell:parallel,
|
---|
| 185 | author = "Haskell Wiki",
|
---|
| 186 | title = "Parallel Haskell",
|
---|
[cc28153d] | 187 | howpublished = {\url{https://wiki.haskell.org/Parallel}},
|
---|
[c9019ce] | 188 | note = "[Online; accessed 23-May-2023]"
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | @misc{gcc:atomics,
|
---|
| 192 | author = "GCC team",
|
---|
| 193 | title = "Built-in Functions for Memory Model Aware Atomic Operations",
|
---|
[cc28153d] | 194 | howpublished = {\url{https://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html}},
|
---|
[c9019ce] | 195 | note = "[Online; accessed 23-May-2023]"
|
---|
| 196 | }
|
---|
[760c88c] | 197 |
|
---|
[f519bd8] | 198 | @inproceedings{Doherty04,
|
---|
[432e1de] | 199 | title={DCAS is Not a Silver Bullet for Nonblocking Algorithm Design},
|
---|
[f519bd8] | 200 | author={Doherty, Simon and Detlefs, David L and Groves, Lindsay and Flood, Christine H and Luchangco, Victor and Martin, Paul A and Moir, Mark and Shavit, Nir and Steele Jr, Guy L},
|
---|
| 201 | booktitle={Proceedings of the sixteenth annual ACM symposium on Parallelism in algorithms and architectures},
|
---|
| 202 | pages={216--224},
|
---|
| 203 | year={2004}
|
---|
| 204 | }
|
---|
[ea1bb94] | 205 |
|
---|
| 206 | @manual{IntelManual,
|
---|
| 207 | keywords = {Intel},
|
---|
[cc28153d] | 208 | title = {Intel 64 and IA-32 Architectures Software Developer's Manual},
|
---|
| 209 | version = {Version 080},
|
---|
[ea1bb94] | 210 | organization= {Intel},
|
---|
[b3ac8ce3] | 211 | month = mar,
|
---|
[ea1bb94] | 212 | year = 2023,
|
---|
[cc28153d] | 213 | }
|
---|
[c0035fc] | 214 |
|
---|
| 215 | @inproceedings{Harris02,
|
---|
| 216 | title={A practical multi-word compare-and-swap operation},
|
---|
| 217 | author={Harris, Timothy L and Fraser, Keir and Pratt, Ian A},
|
---|
| 218 | booktitle={Distributed Computing: 16th International Conference, DISC 2002 Toulouse, France, October 28--30, 2002 Proceedings 16},
|
---|
| 219 | pages={265--279},
|
---|
| 220 | year={2002},
|
---|
| 221 | organization={Springer}
|
---|
| 222 | }
|
---|
| 223 |
|
---|
| 224 | @misc{kotlin:channel,
|
---|
| 225 | author = "Kotlin Documentation",
|
---|
| 226 | title = "Channel",
|
---|
| 227 | howpublished = {\url{https://kotlinlang.org/api/kotlinx.coroutines/kotlinx-coroutines-core/kotlinx.coroutines.channels/-channel/}},
|
---|
| 228 | note = "[Online; accessed 11-September-2023]"
|
---|
| 229 | }
|
---|