package async_unix
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Monadic concurrency library
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.17.0.tar.gz
sha256=814d3a9997ec1316b8b2a601b24471740641647a25002761f7df7869c3ac9e33
doc/src/async_unix/io_uring_raw_null.ml.html
Source file io_uring_raw_null.ml
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212open! Core open Import type t module Int63 = struct type t [@@immediate64] let of_int _ = assert false let to_int _ = assert false end module FLAGS = struct type t = int let empty = 0 let _ = empty let of_int x = x let ( + ) = ( lor ) let mem a b = a land b = a end module Poll_mask = struct include FLAGS let pollin = 0 let pollout = 0 let pollerr = 0 let pollhup = 0 end module Clock = struct type t = | Boottime | Realtime end module Statx = struct type t type kind = [ `Unknown | `Fifo | `Character_special | `Directory | `Block_device | `Regular_file | `Symbolic_link | `Socket ] let create _ = assert false module Flags = struct include FLAGS let empty = 0 let empty_path = 0 let no_automount = 0 let symlink_nofollow = 0 let statx_sync_as_stat = 0 let statx_force_sync = 0 let statx_dont_sync = 0 end module Attr = struct include FLAGS let compressed = 0 let immutable = 0 let append = 0 let nodump = 0 let encrypted = 0 let verity = 0 (** Since Linux 5.8 *) let dax = 0 let check ?mask:_ _ _ = false end module Mask = struct include FLAGS let type' = 0 let mode = 0 let nlink = 0 let uid = 0 let gid = 0 let atime = 0 let mtime = 0 let ctime = 0 let ino = 0 let size = 0 let blocks = 0 let basic_stats = 0 let btime = 0 (** As of Linux 5.8 *) let mnt_id = 0 (** As of Linux 6.1 *) let dioalign = 0 let check _ _ = false end let blksize _ = Int64.zero let attributes _ = Int64.zero let nlink _ = Int64.zero let uid _ = Int64.zero let gid _ = Int64.zero let ino _ = Int64.zero let size _ = Int64.zero let blocks _ = Int64.zero let attributes_mask _ = Int64.zero let rdev _ = Int64.zero let dev _ = Int64.zero let mask _ = Int64.zero (** See {! Mask.mnt_id}. *) let mnt_id _ = Int64.zero (** See {! Mask.dioalign}. *) let dio_mem_align _ = Int64.zero (** See {! Mask.dioalign}. *) let dio_offset_align _ = Int64.zero let atime_sec _ = Int64.zero let btime_sec _ = Int64.zero let ctime_sec _ = Int64.zero let mtime_sec _ = Int64.zero let atime_nsec _ = 0 let btime_nsec _ = 0 let ctime_nsec _ = 0 let mtime_nsec _ = 0 let mode _ = 0 let perm _ = 0 let kind _ = `Unknown end module Syscall_result = struct type t = (int, Unix.Error.t) Result.t [@@deriving sexp_of] end module Handle = struct type t let invariant _ = () end (** Flags that can be passed to openat2. *) module Open_flags = struct include FLAGS let empty = 0 let append = 0 let cloexec = 0 let creat = 0 let direct = 0 let directory = 0 let dsync = 0 let excl = 0 let largefile = 0 let noatime = 0 let noctty = 0 let nofollow = 0 let nonblock = 0 let path = 0 let sync = 0 let tmpfile = 0 let trunc = 0 end (** Flags that can be passed to openat2 to control path resolution. *) module Resolve = struct include FLAGS let empty = 0 let beneath = 0 let in_root = 0 let no_magiclinks = 0 let no_symlinks = 0 let no_xdev = 0 let cached = 0 end let create ?polling_timeout:_ ~queue_depth:_ () = Or_error.unimplemented "Io_uring_raw.create" ;; let exit _ = assert false let supports_ext_arg _ = assert false let submit _ = assert false let cqe_ready _ ~timeout:_ = assert false let fill_completions _ = assert false let noop _ = assert false let read _ = assert false let write _ = assert false let readv _ = assert false let writev _ = assert false let poll_add _ = assert false let openat2 _ = assert false let close _ = assert false let unlink _ = assert false let link _ = assert false let timeout _ = assert false let statx _ = assert false let cancel _ = assert false let syscall_result _ = assert false let register_eventfd _ = assert false
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>