Ignore:
Timestamp:
Jun 1, 2023, 12:45:06 PM (14 months ago)
Author:
caparsons <caparson@…>
Branches:
ast-experimental, master
Children:
5eb9327
Parents:
3eeeb88
Message:

added some citation and waituntil chapter draft up until performance section

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/colby_parsons_MMAth/local.bib

    r3eeeb88 r760c88c  
    9595@misc{go:select,
    9696  author = "The Go Programming Language",
    97   title = "src/runtime/chan.go",
     97  title = "src/runtime/select.go",
    9898  howpublished = {\href{https://go.dev/src/runtime/select.go}},
    9999  note = "[Online; accessed 23-May-2023]"
    100100}
    101101
     102@misc{go:selectref,
     103  author = "The Go Programming Language Specification",
     104  title = "Select statements",
     105  howpublished = {\href{https://go.dev/ref/spec#Select\_statements}},
     106  note = "[Online; accessed 23-May-2023]"
     107}
     108
     109@misc{boost:channel,
     110  author = "Boost C++ Libraries",
     111  title = "experimental::basic\_concurrent\_channel",
     112  howpublished = {\href{https://www.boost.org/doc/libs/master/doc/html/boost\_asio/reference/experimental\__basic\_concurrent\_channel.html}},
     113  note = "[Online; accessed 23-May-2023]"
     114}
     115
     116@misc{rust:channel,
     117  author = "The Rust Standard Library",
     118  title = "std::sync::mpsc::sync\_channel",
     119  howpublished = {\href{https://doc.rust-lang.org/std/sync/mpsc/fn.sync\_channel.html}},
     120  note = "[Online; accessed 23-May-2023]"
     121}
     122
     123@misc{rust:select,
     124  author = "The Rust Standard Library",
     125  title = "Macro futures::select",
     126  howpublished = {\href{https://docs.rs/futures/latest/futures/macro.select.html}},
     127  note = "[Online; accessed 23-May-2023]"
     128}
     129
     130@misc{ocaml:channel,
     131  author = "The OCaml Manual",
     132  title = "OCaml library : Event",
     133  howpublished = {\href{https://v2.ocaml.org/api/Event.html}},
     134  note = "[Online; accessed 23-May-2023]"
     135}
     136
     137@misc{haskell:channel,
     138  author = "The Haskell Package Repository",
     139  title = "Control.Concurrent.Chan",
     140  howpublished = {\href{https://hackage.haskell.org/package/base-4.18.0.0/docs/Control-Concurrent-Chan.html}},
     141  note = "[Online; accessed 23-May-2023]"
     142}
     143
     144@misc{linux:select,
     145  author = "Linux man pages",
     146  title = "select(2) — Linux manual page",
     147  howpublished = {\href{https://man7.org/linux/man-pages/man2/select.2.html}},
     148  note = "[Online; accessed 23-May-2023]"
     149}
     150
     151@misc{linux:poll,
     152  author = "Linux man pages",
     153  title = "poll(2) — Linux manual page",
     154  howpublished = {\href{https://man7.org/linux/man-pages/man2/poll.2.html}},
     155  note = "[Online; accessed 23-May-2023]"
     156}
     157
     158@misc{linux:epoll,
     159  author = "Linux man pages",
     160  title = "epoll(7) — Linux manual page",
     161  howpublished = {\href{https://man7.org/linux/man-pages/man7/epoll.7.html}},
     162  note = "[Online; accessed 23-May-2023]"
     163}
     164
     165@article{Ichbiah79,
     166  title={Preliminary Ada reference manual},
     167  author={Ichbiah, Jean D},
     168  journal={ACM Sigplan Notices},
     169  volume={14},
     170  number={6a},
     171  pages={1--145},
     172  year={1979},
     173  publisher={ACM New York, NY, USA}
     174}
     175
     176@misc{cpp:whenany,
     177  author = "C++ reference",
     178  title = "std::experimental::when\_any",
     179  howpublished = {\href{https://en.cppreference.com/w/cpp/experimental/when\_any}},
     180  note = "[Online; accessed 23-May-2023]"
     181}
     182
     183
     184
Note: See TracChangeset for help on using the changeset viewer.