Changes in / [09366b8:79ee5b3]


Ignore:
Location:
doc/theses/thierry_delisle_PhD/thesis
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle_PhD/thesis/local.bib

    r09366b8 r79ee5b3  
    842842}
    843843
     844@manual{MAN:bash,
     845  title   = {Bash Reference Manual},
     846  author  = {Chet Ramey and Brian Fox},
     847  year    = "2020",
     848  month   = "December",
     849  version = {5,1},
     850  howpublished = {\href{https://www.gnu.org/software/bash/manual/bash.pdf}{https://\-www.gnu.org/\-software/\-bash/\-manual/\-bash.pdf}}
     851}
     852
    844853@misc{MAN:io_uring,
    845854  title   = {Efficient IO with io\_uring},
     
    850859  howpublished = {\href{https://kernel.dk/io_uring.pdf}{https://\-kernel.dk/\-io\_uring.pdf}}
    851860}
     861
    852862
    853863% --------------------------------------------------
  • doc/theses/thierry_delisle_PhD/thesis/text/front.tex

    r09366b8 r79ee5b3  
    3939                \vspace*{2.0cm}
    4040
    41                 Waterloo, Ontario, Canada, 2021 \\
    42 
    43                 \vspace*{1.0cm}
    44 
    45                 \copyright\ Thierry Delisle 2021 \\
     41                Waterloo, Ontario, Canada, 2022 \\
     42
     43                \vspace*{1.0cm}
     44
     45                \copyright\ Thierry Delisle 2022 \\
    4646        \end{center}
    4747\end{titlepage}
     
    179179\phantomsection    % allows hyperref to link to the correct page
    180180
     181% L I S T   O F   F I G U R E S
     182% -----------------------------
     183\addcontentsline{toc}{chapter}{List of Figures}
     184\listoffigures
     185\cleardoublepage
     186\phantomsection         % allows hyperref to link to the correct page
     187
    181188% L I S T   O F   T A B L E S
    182189% ---------------------------
     
    186193\phantomsection         % allows hyperref to link to the correct page
    187194
    188 % L I S T   O F   F I G U R E S
    189 % -----------------------------
    190 \addcontentsline{toc}{chapter}{List of Figures}
    191 \listoffigures
    192 \cleardoublepage
    193 \phantomsection         % allows hyperref to link to the correct page
    194 
    195195% GLOSSARIES (Lists of definitions, abbreviations, symbols, etc. provided by the glossaries-extra package)
    196196% -----------------------------
     
    199199\phantomsection         % allows hyperref to link to the correct page
    200200
    201 % TODOs and missing citations
    202 % -----------------------------
    203 \listofcits
    204 \listoftodos
    205 \cleardoublepage
    206 \phantomsection         % allows hyperref to link to the correct page
    207 
    208 
    209201% Change page numbering back to Arabic numerals
    210202\pagenumbering{arabic}
  • doc/theses/thierry_delisle_PhD/thesis/text/io.tex

    r09366b8 r79ee5b3  
    3030Hence, if one \gls{kthrd} is managing the select calls, other threads can only add/remove to/from the manager's interest set through synchronized calls to update the interest set.
    3131However, these changes are only reflected when the manager makes its next call to @select@.
    32 Note, it is possible for the manager thread to never unblock if its current interest set never changes, \eg the sockets/pipes/ttys it is waiting on never get data again.
     32Note, it is possible for the manager thread to never unblock if its current interest set never changes, \eg the sockets/pipes/TTYs it is waiting on never get data again.
    3333Often the I/O manager has a timeout, polls, or is sent a signal on changes to mitigate this problem.
    3434
     
    4646However, all three of these I/O systems have limitations.
    4747The @man@ page for @O_NONBLOCK@ mentions that ``[@O_NONBLOCK@] has no effect for regular files and block devices'', which means none of these three system calls are viable multiplexing strategies for these types of \io operations.
    48 Furthermore, @epoll@ has been shown to have problems with pipes and ttys~\cit{Peter's examples in some fashion}.
     48Furthermore, TTYs can also be tricky to use since they can take different forms based on how the command is executed.
     49For example, @epoll@ rejects FDs pointing to regular files or block devices, which includes @stdin@ when using shell redirections~\cite[\S~3.6]{MAN:bash}, but does not reject shell pipelines~\cite[\S~3.2.3]{MAN:bash}, which includes pipelines into @stdin@.
    4950Finally, none of these are useful solutions for multiplexing \io operations that do not have a corresponding file descriptor and can be awkward for operations using multiple file descriptors.
    5051
Note: See TracChangeset for help on using the changeset viewer.