Changeset b2951e2 in mainline
- Timestamp:
- 2006-06-07T19:27:43Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b3d1e11
- Parents:
- f951077
- Files:
-
- 87 edited
Legend:
- Unmodified
- Added
- Removed
-
init/init.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup init Init 30 * @brief Init process for testing purposes. 31 * @{ 32 */ 33 /** 34 * @file 35 */ 36 29 37 #include "version.h" 30 38 #include <stdio.h> … … 50 58 return 0; 51 59 } 60 61 /** @} 62 */ 63 -
init/init.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup init 30 * @{ 31 */ 32 /** 33 * @file 34 */ 35 29 36 #ifndef __INIT_H__ 30 37 #define __INIT_H__ … … 33 40 34 41 #endif 42 43 /** @} 44 */ 45 -
init/version.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup init 30 * @{ 31 */ 32 /** 33 * @file 34 */ 35 29 36 #include <unistd.h> 30 37 #include <stdio.h> … … 37 44 puts("Copyright (C) 2006 HelenOS project"); 38 45 } 46 47 /** @} 48 */ 49 -
init/version.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup init 30 * @{ 31 */ 32 /** 33 * @file 34 */ 35 29 36 #ifndef __VERSION_H__ 30 37 #define __VERSION_H__ … … 33 40 34 41 #endif 42 43 /** @} 44 */ 45 -
ipcc/ipcc.c
rf951077 rb2951e2 1 /* 2 * Copyright (C) 2006 Ondrej Palkovsky 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 29 /** @addtogroup ippc IPPC 30 * @brief Interprocess communication tester. 31 * @{ 32 */ 33 /** 34 * @file 35 */ 36 1 37 #include <stdio.h> 2 38 #include <async.h> … … 240 276 } 241 277 } 278 279 /** @} 280 */ 281 -
klog/klog.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup klog KLog 30 * @brief HelenOS KLog 31 * @{ 32 */ 33 /** 34 * @file 27 35 */ 28 36 … … 76 84 return 0; 77 85 } 86 87 /** @} 88 */ -
libc/generic/as.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 79 85 /** Sbrk emulation 80 86 * 81 * @param sizeNew area that should be allocated or negative,87 * @param incr New area that should be allocated or negative, 82 88 if it should be shrinked 83 89 * @return Pointer to newly allocated area … … 141 147 return res; 142 148 } 149 150 151 /** @} 152 */ 153 154 -
libc/generic/async.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 357 363 * It calls client_connection and does final cleanup. 358 364 * 359 * @param eterarg Connection structure pointer365 * @param arg Connection structure pointer 360 366 */ 361 367 static int connection_thread(void *arg) … … 793 799 ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL, !in_interrupt_handler); 794 800 } 801 802 803 /** @} 804 */ 805 806 -
libc/generic/cap.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 29 32 /** 30 33 * @file cap.c … … 68 71 __SYSCALL2(SYS_CAP_REVOKE, (sysarg_t) &arg, (sysarg_t) caps); 69 72 } 73 74 75 /** @} 76 */ 77 78 -
libc/generic/ddi.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 36 42 * Caller of this function must have the CAP_MEM_MANAGER capability. 37 43 * 38 * @param id Task ID.39 44 * @param pf Physical address of the starting frame. 40 45 * @param vp Virtual address of the sterting page. … … 83 88 return __SYSCALL1(SYS_PREEMPT_CONTROL, (sysarg_t) enable); 84 89 } 90 91 92 /** @} 93 */ 94 95 -
libc/generic/err.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdio.h> 30 36 #include <stdlib.h> … … 35 41 _exit(0); 36 42 } 43 44 45 /** @} 46 */ 47 48 -
libc/generic/futex.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 167 173 return 0; 168 174 } 175 176 177 /** @} 178 */ 179 180 -
libc/generic/io/io.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 105 111 106 112 113 114 115 /** @} 116 */ 117 118 -
libc/generic/io/printf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <io/printf_core.h> 30 36 #include <stdio.h> … … 51 57 52 58 59 60 61 /** @} 62 */ 63 64 -
libc/generic/io/printf_core.c
rf951077 rb2951e2 28 28 */ 29 29 30 /** @addtogroup libc 31 * @{ 32 */ 30 33 /** 31 * @file print.c34 * @file 32 35 * @brief Printing functions. 33 36 */ … … 413 416 * 414 417 * - P, p Print value of a pointer. Void * value is expected and it is printed in hexadecimal notation with prefix 415 * (as with \%#X or \%#x for 32bit or \%#X / \%#xfor 64bit long pointers).418 * (as with '\%#X' or '\%#x' for 32bit or '\%#X' or '\%#x' for 64bit long pointers). 416 419 * 417 420 * - b Print value as unsigned binary number. Prefix is not printed by default. (Nonstandard extension.) … … 686 689 } 687 690 691 692 693 /** @} 694 */ 695 696 -
libc/generic/io/snprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 49 55 return ret; 50 56 } 57 58 59 /** @} 60 */ 61 62 -
libc/generic/io/sprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 48 54 return ret; 49 55 } 56 57 58 /** @} 59 */ 60 61 -
libc/generic/io/stream.c
rf951077 rb2951e2 26 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 */ 29 30 /** @addtogroup libc 31 * @{ 32 */ 33 /** @file 28 34 */ 29 35 … … 182 188 return streams[fd].phone; 183 189 } 190 191 192 /** @} 193 */ 194 195 -
libc/generic/io/vprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 52 58 53 59 60 61 62 /** @} 63 */ 64 65 -
libc/generic/io/vsnprintf.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 104 110 105 111 112 113 114 /** @} 115 */ 116 117 -
libc/generic/io/vsprintf.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdarg.h> 30 36 #include <stdio.h> … … 42 48 } 43 49 50 51 52 /** @} 53 */ 54 55 -
libc/generic/ipc.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 * @} 32 */ 33 34 /** @addtogroup libcipc IPC 35 * @brief HelenOS uspace IPC 36 * @{ 37 * @ingroup libc 38 */ 39 /** @file 27 40 */ 28 41 … … 438 451 } 439 452 453 454 455 /** @} 456 */ 457 458 -
libc/generic/libadt/hash_table.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 169 175 } 170 176 } 177 178 179 /** @} 180 */ 181 182 -
libc/generic/libadt/list.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 79 85 list_initialize(head2); 80 86 } 87 88 89 /** @} 90 */ 91 92 -
libc/generic/libc.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 62 68 _exit(0); 63 69 } 70 71 72 /** @} 73 */ 74 75 -
libc/generic/mmap.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <sys/mman.h> 30 36 #include <as.h> … … 51 57 return as_area_destroy(start); 52 58 } 59 60 61 /** @} 62 */ 63 64 -
libc/generic/psthread.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 302 308 serialization_count--; 303 309 } 310 311 312 /** @} 313 */ 314 315 -
libc/generic/stdlib.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <stdlib.h> 30 36 … … 40 46 glbl_seed = seed; 41 47 } 48 49 50 /** @} 51 */ 52 53 -
libc/generic/string.c
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <string.h> 30 36 #include <unistd.h> … … 301 307 ; 302 308 } 309 310 311 /** @} 312 */ 313 314 -
libc/generic/sysinfo.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 36 42 } 37 43 44 45 46 /** @} 47 */ 48 49 -
libc/generic/task.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 38 44 return task_id; 39 45 } 46 47 48 /** @} 49 */ 50 51 -
libc/generic/thread.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 147 153 } 148 154 155 156 157 /** @} 158 */ 159 160 -
libc/generic/time.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 110 116 futex_down_timeout(&futex, usec, 0); 111 117 } 118 119 120 /** @} 121 */ 122 123 -
libc/include/align.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ALIGN_H__ 30 36 #define __ALIGN_H__ … … 46 52 47 53 #endif 54 55 56 /** @} 57 */ 58 59 -
libc/include/as.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __libc_AS_H__ 30 36 #define __libc_AS_H__ … … 44 50 45 51 #endif 52 53 54 /** @} 55 */ 56 57 -
libc/include/assert.h
rf951077 rb2951e2 28 28 */ 29 29 30 /** @addtogroup libc 31 * @{ 32 */ 33 /** @file 34 */ 35 30 36 #ifndef __LIBC__ASSERT_H__ 31 37 #define __LIBC__ASSERT_H__ … … 49 55 50 56 #endif 57 58 59 /** @} 60 */ 61 62 -
libc/include/async.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 124 130 extern atomic_t async_futex; 125 131 #endif 132 133 134 /** @} 135 */ 136 137 -
libc/include/atomic.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ATOMIC_H__ 30 36 #define __ATOMIC_H__ … … 47 53 48 54 #endif 55 56 57 /** @} 58 */ 59 60 -
libc/include/cap.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __CAP_H__ 30 36 #define __CAP_H__ … … 36 42 37 43 #endif 44 45 46 /** @} 47 */ 48 49 -
libc/include/ctype.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __CTYPE_H__ 30 36 #define __CTYPE_H__ … … 53 59 #endif 54 60 61 62 63 /** @} 64 */ 65 66 -
libc/include/ddi.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC_DDI_H__ 30 36 #define __LIBC_DDI_H__ … … 37 43 38 44 #endif 45 46 47 /** @} 48 */ 49 50 -
libc/include/endian.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__ENDIAN_H__ 30 36 #define __LIBC__ENDIAN_H__ … … 38 44 #endif 39 45 46 47 48 /** @} 49 */ 50 51 -
libc/include/err.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef _libc__ERR_H_ 30 36 #define _libc__ERR_H_ … … 33 39 34 40 #endif 41 42 43 /** @} 44 */ 45 46 -
libc/include/errno.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__ERRNO_H__ 30 36 #define __LIBC__ERRNO_H__ … … 35 41 36 42 #endif 43 44 45 /** @} 46 */ 47 48 -
libc/include/futex.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__FUTEX_H__ 30 36 #define __LIBC__FUTEX_H__ … … 42 48 43 49 #endif 50 51 52 /** @} 53 */ 54 55 -
libc/include/io/io.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__IO_H__ 30 36 #define __LIBC__IO_H__ … … 38 44 39 45 #endif 46 47 48 /** @} 49 */ 50 51 -
libc/include/io/printf_core.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__PRINTF_CORE_H__ 30 36 #define __LIBC__PRINTF_CORE_H__ … … 45 51 46 52 #endif 53 54 55 /** @} 56 */ 57 58 -
libc/include/io/stream.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __libc_STREAM_H_ 30 36 #define __libc_STREAM_H_ … … 44 50 45 51 #endif 52 53 54 /** @} 55 */ 56 57 -
libc/include/ipc/fb.h
rf951077 rb2951e2 1 /* 2 * Copyright (C) 2006 Ondrej Palkovsky 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 */ 1 28 29 /** @addtogroup libcipc 30 * @{ 31 */ 32 /** @file 33 */ 2 34 3 35 #include <arch/types.h> … … 40 72 41 73 #endif 74 75 76 /** @} 77 */ 78 79 -
libc/include/ipc/ipc.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libcipc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 83 89 84 90 #endif 91 92 93 /** @} 94 */ 95 96 -
libc/include/ipc/ns.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libcipc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBIPC__NS_H__ 30 36 #define __LIBIPC__NS_H__ 31 37 32 38 #endif 39 40 41 /** @} 42 */ 43 44 -
libc/include/ipc/services.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libcipc 30 * @{ 31 */ 29 32 /** 30 33 * @file services.h … … 45 48 46 49 #endif 50 51 52 /** @} 53 */ 54 55 -
libc/include/libadt/fifo.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 117 123 118 124 #endif 125 126 127 /** @} 128 */ 129 130 -
libc/include/libadt/hash_table.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 79 85 80 86 #endif 87 88 89 /** @} 90 */ 91 92 -
libc/include/libadt/list.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 184 190 185 191 #endif 192 193 194 /** @} 195 */ 196 197 -
libc/include/libc.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__LIBC_H__ 30 36 #define __LIBC__LIBC_H__ … … 47 53 48 54 #endif 55 56 57 /** @} 58 */ 59 60 -
libc/include/limits.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 65 71 #endif 66 72 73 74 75 /** @} 76 */ 77 78 -
libc/include/malloc.h
rf951077 rb2951e2 530 530 531 531 #endif /* MALLOC_280_H */ 532 533 534 /** @} 535 */ 536 537 -
libc/include/psthread.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 88 94 89 95 #endif 96 97 98 /** @} 99 */ 100 101 -
libc/include/stdarg.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STDARG_H__ 30 36 #define __LIBC__STDARG_H__ … … 46 52 #endif 47 53 54 55 56 /** @} 57 */ 58 59 -
libc/include/stddef.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STDDEF_H__ 30 36 #define __LIBC__STDDEF_H__ … … 34 40 #endif 35 41 42 43 44 /** @} 45 */ 46 47 -
libc/include/stdint.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 55 61 #endif 56 62 63 64 65 /** @} 66 */ 67 68 -
libc/include/stdio.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STDIO_H__ 30 36 #define __LIBC__STDIO_H__ … … 53 59 54 60 #endif 61 62 63 /** @} 64 */ 65 66 -
libc/include/stdlib.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STDLIB_H__ 30 36 #define __LIBC__STDLIB_H__ … … 52 58 53 59 #endif 60 61 62 /** @} 63 */ 64 65 -
libc/include/string.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 30 36 #ifndef __LIBC__STRING_H__ … … 53 59 54 60 #endif 61 62 63 /** @} 64 */ 65 66 -
libc/include/sys/mman.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __libc_MMAN_H_ 30 36 #define __libc_MMAN_H_ … … 48 54 49 55 #endif 56 57 58 /** @} 59 */ 60 61 -
libc/include/sys/time.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 50 56 51 57 #endif 58 59 60 /** @} 61 */ 62 63 -
libc/include/sys/types.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__SYS_TYPES_H__ 30 36 #define __LIBC__SYS_TYPES_H__ … … 34 40 #endif 35 41 42 43 44 /** @} 45 */ 46 47 -
libc/include/sysinfo.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 39 45 #endif 40 46 47 48 49 /** @} 50 */ 51 52 -
libc/include/task.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TASK_H__ 30 36 #define __LIBC__TASK_H__ … … 37 43 38 44 #endif 45 46 47 /** @} 48 */ 49 50 -
libc/include/thread.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__THREAD_H__ 30 36 #define __LIBC__THREAD_H__ … … 45 51 46 52 #endif 53 54 55 /** @} 56 */ 57 58 -
libc/include/time.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 31 37 32 38 #endif 39 40 41 /** @} 42 */ 43 44 -
libc/include/types.h
rf951077 rb2951e2 1 1 #include <libarch/types.h> 2 3 4 /** @} 5 */ 6 7 -
libc/include/unistd.h
rf951077 rb2951e2 27 27 */ 28 28 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__UNISTD_H__ 30 36 #define __LIBC__UNISTD_H__ … … 43 49 44 50 #endif 51 52 53 /** @} 54 */ 55 56 -
softfloat/generic/common.c
rf951077 rb2951e2 53 53 54 54 /** Take fraction shifted by 10 bits to left, round it, normalize it and detect exceptions 55 * @param exp exponent with bias55 * @param cexp exponent with bias 56 56 * @param cfrac fraction shifted 10 places left with added hidden bit 57 * @param sign 57 58 * @return valied float64 58 59 */ -
softint/generic/division.c
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup softint SoftInt 30 * @brief Software implementation of basic arithmetic operations. 31 * @{ 32 */ 33 /** 34 * @file 35 * SW implementation of 32 and 64 bit division and modulo. 27 36 */ 28 37 … … 186 195 } 187 196 188 197 /** @} 198 */ -
softint/include/division.h
rf951077 rb2951e2 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** @addtogroup softint 30 * @{ 31 */ 32 /** 33 * @file 27 34 */ 28 35 … … 59 66 #endif 60 67 68 /** @} 69 */ 70 -
tetris/input.c
rf951077 rb2951e2 34 34 * 35 35 * @(#)input.c 8.1 (Berkeley) 5/31/93 36 */ 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 36 42 */ 37 43 … … 177 183 return ((int)(unsigned char)c); 178 184 } 185 186 /** @} 187 */ 188 -
tetris/input.h
rf951077 rb2951e2 36 36 */ 37 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 42 */ 43 38 44 int rwait(struct timeval *); 39 45 int tgetchar(void); 40 46 void tsleep(void); 47 48 /** @} 49 */ 50 -
tetris/pathnames.h
rf951077 rb2951e2 36 36 */ 37 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 42 */ 43 38 44 #define _PATH_SCOREFILE "/var/games/tetris.scores" 45 46 47 /** @} 48 */ 49 -
tetris/scores.c
rf951077 rb2951e2 34 34 * 35 35 * @(#)scores.c 8.1 (Berkeley) 5/31/93 36 */ 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 36 42 */ 37 43 … … 532 538 /* } */ 533 539 /* } */ 540 541 /** @} 542 */ 543 -
tetris/scores.h
rf951077 rb2951e2 35 35 * @(#)scores.h 8.1 (Berkeley) 5/31/93 36 36 */ 37 /** @addtogroup tetris 38 * @{ 39 */ 40 /** @file 41 */ 42 37 43 38 44 /* … … 56 62 void insertscore(int score, int level); 57 63 void initscores(void); 64 65 /** @} 66 */ 67 -
tetris/screen.c
rf951077 rb2951e2 36 36 */ 37 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 42 */ 43 38 44 /* 39 45 * Tetris screen control. … … 317 323 (void) putchar(' '); 318 324 } 325 326 /** @} 327 */ 328 -
tetris/screen.h
rf951077 rb2951e2 36 36 */ 37 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 42 */ 43 38 44 /* 39 45 * putpad() is for padded strings with count=1. … … 60 66 void scr_set(void); 61 67 void scr_update(void); 68 69 /** @} 70 */ 71 -
tetris/shapes.c
rf951077 rb2951e2 34 34 * 35 35 * @(#)shapes.c 8.1 (Berkeley) 5/31/93 36 */ 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 36 42 */ 37 43 … … 105 111 board[pos + *o] = onoff; 106 112 } 113 114 /** @} 115 */ 116 -
tetris/tetris.c
rf951077 rb2951e2 34 34 * 35 35 * @(#)tetris.c 8.1 (Berkeley) 5/31/93 36 */ 37 38 /** @addtogroup tetris Tetris 39 * @brief Tetris ported from OpenBSD 40 * @{ 41 */ 42 /** @file 36 43 */ 37 44 … … 460 467 exit(1); 461 468 } 469 470 /** @} 471 */ 472 -
tetris/tetris.h
rf951077 rb2951e2 34 34 * 35 35 * @(#)tetris.h 8.1 (Berkeley) 5/31/93 36 */ 37 38 /** @addtogroup tetris 39 * @{ 40 */ 41 /** @file 36 42 */ 37 43 … … 177 183 void place(const struct shape *, int, int); 178 184 void stop(char *); 185 186 /** @} 187 */ 188
Note:
See TracChangeset
for help on using the changeset viewer.