[7e2988c] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
[7e2988c] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[fadd381] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[4805495] | 35 | #ifndef _LIBC_FIBRIL_H_
|
---|
| 36 | #define _LIBC_FIBRIL_H_
|
---|
[7e2988c] | 37 |
|
---|
[5f97ef44] | 38 | #include <time.h>
|
---|
[bc56f30] | 39 | #include <_bits/errno.h>
|
---|
[514d561] | 40 | #include <_bits/__noreturn.h>
|
---|
[bc56f30] | 41 | #include <_bits/decls.h>
|
---|
| 42 |
|
---|
| 43 | __HELENOS_DECLS_BEGIN;
|
---|
[7e2988c] | 44 |
|
---|
[d73d992] | 45 | typedef struct fibril fibril_t;
|
---|
[7f122e3] | 46 |
|
---|
| 47 | typedef struct {
|
---|
[d73d992] | 48 | fibril_t *owned_by;
|
---|
[7f122e3] | 49 | } fibril_owner_info_t;
|
---|
| 50 |
|
---|
[514d561] | 51 | typedef fibril_t *fid_t;
|
---|
| 52 |
|
---|
[d8cb48d] | 53 | #ifndef __cplusplus
|
---|
[26360f7] | 54 | /** Fibril-local variable specifier */
|
---|
| 55 | #define fibril_local __thread
|
---|
[d8cb48d] | 56 | #endif
|
---|
[eceff5f] | 57 |
|
---|
[514d561] | 58 | extern fid_t fibril_create_generic(errno_t (*)(void *), void *, size_t);
|
---|
[d8cb48d] | 59 | extern fid_t fibril_create(errno_t (*)(void *), void *);
|
---|
[514d561] | 60 | extern void fibril_destroy(fid_t);
|
---|
| 61 | extern void fibril_add_ready(fid_t);
|
---|
[bc1f1c2] | 62 | extern fid_t fibril_get_id(void);
|
---|
[d73d992] | 63 | extern void fibril_yield(void);
|
---|
[80649a91] | 64 |
|
---|
[bd41ac52] | 65 | extern void fibril_usleep(usec_t);
|
---|
| 66 | extern void fibril_sleep(sec_t);
|
---|
[5f97ef44] | 67 |
|
---|
[c124c985] | 68 | extern void fibril_enable_multithreaded(void);
|
---|
| 69 | extern int fibril_test_spawn_runners(int);
|
---|
| 70 |
|
---|
| 71 | extern void fibril_detach(fid_t fid);
|
---|
| 72 |
|
---|
[514d561] | 73 | extern void fibril_start(fid_t);
|
---|
| 74 | extern __noreturn void fibril_exit(long);
|
---|
| 75 |
|
---|
[bc56f30] | 76 | __HELENOS_DECLS_END;
|
---|
| 77 |
|
---|
[7e2988c] | 78 | #endif
|
---|
[b2951e2] | 79 |
|
---|
[fadd381] | 80 | /** @}
|
---|
[b2951e2] | 81 | */
|
---|