/usr/lib/ats-anairiats-0.2.11/libc/SATS/pthread.sats is in ats-lang-anairiats 0.2.11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | (***********************************************************************)
(* *)
(* Applied Type System *)
(* *)
(* Hongwei Xi *)
(* *)
(***********************************************************************)
(*
** ATS - Unleashing the Potential of Types!
** Copyright (C) 2002-2010 Hongwei Xi, Boston University
** All rights reserved
**
** ATS is free software; you can redistribute it and/or modify it under
** the terms of the GNU General Public License as published by the Free
** Software Foundation; either version 2.1, or (at your option) any later
** version.
**
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without even the implied warranty of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
** for more details.
**
** You should have received a copy of the GNU General Public License
** along with ATS; see the file COPYING. If not, please write to the
** Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*)
(* ****** ****** *)
(* author: Hongwei Xi (hwxi AT cs DOT bu DOT edu) *)
(* ****** ****** *)
//
// some history:
//
// Rui Shi and Hongwei Xi first did [pthread] in ATS/Proto, on which
// this version is primarily based.
//
(* ****** ****** *)
%{#
#include "libc/CATS/pthread.cats"
%} // end of [%{#]
(* ****** ****** *)
#define ATS_STALOADFLAG 0 // no need for static loading at run-time
(* ****** ****** *)
abst@ype pthread_t = $extype"pthread_t"
castfn int_of_pthread (x: pthread_t):<> int
castfn lint_of_pthread (x: pthread_t):<> lint
fun pthread_self (): pthread_t = "mac#atslib_pthread_self"
(* ****** ****** *)
absviewt@ype pthread_attr_t = $extype"pthread_attr_t"
(* ****** ****** *)
fun pthread_attr_init (
attr: &pthread_attr_t? >> opt (pthread_attr_t, i == 0)
) : #[i:nat] int (i)
= "mac#atslib_pthread_attr_init"
// end of [pthread_attr_init]
//
// HX: possible failure: ENOMEM, which is remote
//
fun pthread_attr_init_exn
(attr: &pthread_attr_t? >> pthread_attr_t): void
= "atslib_pthread_attr_init_exn"
// end of [pthread_attr_init_exn]
(* ****** ****** *)
//
// HX: this function does not fail?
//
fun pthread_attr_destroy (
attr: &pthread_attr_t >> opt (pthread_attr_t, i > 0)
) : #[i:nat] int (i)
= "mac#atslib_pthread_attr_destroy"
// end of [pthread_attr_destroy]
fun pthread_attr_destroy_exn
(attr: &pthread_attr_t >> pthread_attr_t?): void
= "atslib_pthread_attr_destroy_exn"
// end of [pthread_attr_destroy_exn]
(* ****** ****** *)
fun pthread_create (
tid: &pthread_t? >> pthread_t
, attr: &pthread_attr_t
, f: ptr -> ptr, arg: ptr
) : int = "mac#atslib_pthread_create"
// end of [pthread_create]
(* ****** ****** *)
fun pthread_join (
tid: pthread_t
, status: &ptr? >> ptr
) : int = "mac#atslib_pthread_join"
// end of [pthread_join]
(* ****** ****** *)
//
// HX: it implemented in [$ATSHOME/ccomp/runtime/ats_prelude.c]
//
fun pthread_create_detached
{vt:viewtype} (
f: (vt) -<fun1> void
, env: !vt >> opt (vt, i > 0)
, tid: &pthread_t? >> pthread_t
) : #[i:nat] int i = "ats_pthread_create_detached"
// end of [pthread_create_detached]
//
// HX: [pthread_create_detached_exn] is implemented in
// [$ATSHOME/libc/DATS/pthread.dats]
//
fun pthread_create_detached_exn
{vt:viewtype} (
f: (vt) -<fun1> void, env: vt, tid: &pthread_t? >> pthread_t
) : void // env is to be processed by f
// end of [pthread_create_detached_exn]
//
// HX: [pthread_create_detached_cloptr] is implemented in
// [$ATSHOME/libc/DATS/pthread.dats]
//
fun pthread_create_detached_cloptr (
//
// HX: closure is freed to avoid leak!
//
f: () -<lincloptr1> void, tid: &pthread_t? >> pthread_t
) : void // end of [pthread_create_detached_cloptr]
(* ****** ****** *)
//
// HX: [pval] is used for supporting [pthread_join]
//
fun pthread_exit
(pval: ptr): void = "mac#atslib_pthread_exit" // macro!
// end of [pthread_exit]
(* ****** ****** *)
fun pthread_cancel
(tid: pthread_t): int = "mac#atslib_pthread_cancel" // macro!
// end of [pthread_cancel]
fun pthread_testcancel (): void = "mac#atslib_pthread_testcancel" // macro!
(* ****** ****** *)
absview pthread_cleanup_v
fun pthread_cleanup_push
{vt:viewtype} (
handler: (vt) -> void, arg: vt
) : (
pthread_cleanup_v | void
) = "mac#atslib_pthread_cleanup_push"
// end of [pthread_cleanup_push]
fun pthread_cleanup_pop
(pf: pthread_cleanup_v | execute: int): void = "mac#atslib_pthread_cleanup_pop"
// end of [pthread_cleanup_pop]
(* ****** ****** *)
absviewt@ype
pthread_spinlock_view_viewt0ype
(v:view) = $extype"pthread_spinlock_t"
// end of [absviewt@ype]
stadef spinlock_vt = pthread_spinlock_view_viewt0ype
fun pthread_spin_init_locked
{v:view} (
spn: &spinlock_vt? >> opt (spinlock_vt(v), i==0)
, pshared : int
) : #[i:nat] int i
= "atslib_pthread_spin_init_locked"
// end of [pthread_spin_init_locked]
fun pthread_spin_init_unlocked {v:view} (
pf: !v >> option_v (v, i > 0)
| spn: &spinlock_vt? >> opt (spinlock_vt(v), i==0)
, pshared : int
) : #[i:nat] int i = "atslib_pthread_spin_init_unlocked"
// end of [pthread_spin_init_unlocked]
(* ****** ****** *)
fun pthread_spin_create_locked
{v:view} (
pshared: int
) : [l:addr] (
option_v ((free_gc_v l, spinlock_vt v @ l), l > null)
| ptr l
) = "atslib_pthread_spin_create_locked"
// end of [pthread_spin_create_locked]
fun pthread_spin_create_unlocked
{v:view} (
pf: !v >> option_v (v, l==null) | pshared: int
) : #[l:addr] (
option_v ((free_gc_v l, spinlock_vt v @ l), l > null)
| ptr l
) = "atslib_pthread_spin_create_unlocked"
// end of [pthread_spin_create_unlocked]
(* ****** ****** *)
fun pthread_spin_destroy
{v:view} {l:addr} (
p: &spinlock_vt(v) >> opt (spinlock_vt(v), i > 0)
) : #[i:nat] (
option_v (v, i==0) | int i
) = "mac#atslib_pthread_spin_destroy"
// end of [pthread_spin_destroy]
(* ****** ****** *)
fun pthread_spin_lock
{v:view} (
spn: &spinlock_vt v
) :<> [i:nat] (option_v (v, i==0) | int i)
= "mac#atslib_pthread_spin_lock" // macro!
// end of [pthread_spin_lock]
fun pthread_spin_trylock
{v:view} (
spn: &spinlock_vt v
) :<> [i:nat] (option_v (v, i==0) | int i)
= "mac#atslib_pthread_spin_trylock" // macro!
// end of [pthread_spin_trylock]
fun pthread_spin_unlock
{v:view} (
resource: v | spn: &spinlock_vt v
) :<> [i:nat] (
option_v (v, i > 0) | int i
) = "mac#atslib_pthread_spin_unlock" // macro!
// end of [pthread_spin_unlock]
(* ****** ****** *)
absviewt@ype
pthread_mutex_view_viewt0ype
(v:view) = $extype"pthread_mutex_t"
// end of [absviewt@ype]
stadef mutex_vt = pthread_mutex_view_viewt0ype
(* ****** ****** *)
//
// HX: this one does initialization and locking
//
fun pthread_mutex_init_locked
{v:view} (
mut: &mutex_vt? >> opt (mutex_vt(v), i==0)
) : #[i:nat] int i = "atslib_pthread_mutex_init_locked"
// end of [pthread_mutex_init_locked]
fun pthread_mutex_init_unlocked {v:view} (
pf: !v >> option_v (v, i > 0)
| mut: &mutex_vt? >> opt (mutex_vt(v), i==0)
) : #[i:nat] int i = "atslib_pthread_mutex_init_unlocked"
// end of [pthread_mutex_init_unlocked]
(* ****** ****** *)
fun pthread_mutex_create_locked
{v:view} (
// there is no argument
) : [l:addr] (
option_v ((free_gc_v l, mutex_vt v @ l), l > null)
| ptr l
) = "atslib_pthread_mutex_create_locked"
// end of [pthread_mutex_create_locked]
fun pthread_mutex_create_unlocked
{v:view} (
pf: !v >> option_v (v, l==null) | (*none*)
) : #[l:addr] (
option_v ((free_gc_v l, mutex_vt v @ l), l > null)
| ptr l
) = "atslib_pthread_mutex_create_unlocked"
// end of [pthread_mutex_create_unlocked]
(* ****** ****** *)
//
// HX-2010-03-14:
// it should be called 'uninitialize' or 'clear' in ATS
//
fun pthread_mutex_destroy
{v:view} {l:addr} (p: &mutex_vt(v) >> opt (mutex_vt(v), i > 0))
: #[i:nat] (
option_v (v, i==0) | int i
) = "mac#atslib_pthread_mutex_destroy"
// end of [pthread_mutex_destroy]
(* ****** ****** *)
fun pthread_mutex_lock
{v:view} (
mut: &mutex_vt v
) :<> [i:nat] (option_v (v, i==0) | int i)
= "mac#atslib_pthread_mutex_lock" // macro!
// end of [pthread_mutex_lock]
fun pthread_mutex_trylock
{v:view} (
mut: &mutex_vt v
) :<> [i:nat] (option_v (v, i==0) | int i)
= "mac#atslib_pthread_mutex_trylock" // macro!
// end of [pthread_mutex_trylock]
fun pthread_mutex_unlock
{v:view} (
resource: v | mut: &mutex_vt v
) :<> [i:nat] (
option_v (v, i > 0) | int i
) = "mac#atslib_pthread_mutex_unlock" // macro!
// end of [pthread_mutex_unlock]
(* ****** ****** *)
absviewt@ype
pthread_cond_viewt0ype = $extype"pthread_cond_t"
stadef cond_vt = pthread_cond_viewt0ype
(* ****** ****** *)
fun pthread_cond_create (
// there is no arugment
) : [l:addr] (
option_v ((free_gc_v l, cond_vt @ l), l > null)
| ptr l
) = "atslib_pthread_cond_create"
fun pthread_cond_wait
{v:view} (
resource: !v | cond: &cond_vt, p: &mutex_vt v
) :<> int
= "mac#atslib_pthread_cond_wait"
// end of [pthread_cond_wait]
fun pthread_cond_signal
(cond: &cond_vt):<> int = "mac#atslib_pthread_cond_signal"
// end of [pthread_cond_signal]
fun pthread_cond_broadcast
(cond: &cond_vt):<> int = "mac#atslib_pthread_cond_broadcast"
// end of [pthread_cond_broadcast]
(* ****** ****** *)
(* end of [pthread.sats] *)
|