Changeset e209fc96 in mainline
- Timestamp:
- 2006-06-07T20:56:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 846848a6
- Parents:
- b3d1e11
- Location:
- libc
- Files:
-
- 61 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/arch/amd64/include/atomic.h
rb3d1e11 re209fc96 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 libcamd64 amd64 30 * @ingroup lc 31 * @brief amd64 architecture dependent parts of libc 32 * @{ 33 */ 34 /** @file 27 35 */ 28 36 … … 68 76 69 77 #endif 78 79 80 /** @} 81 */ 82 83 -
libc/arch/amd64/include/context_offset.h
rb3d1e11 re209fc96 9 9 #define OFFSET_R15 0x38 10 10 #define OFFSET_TLS 0x40 11 12 13 /** @} 14 */ 15 16 -
libc/arch/amd64/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __amd64_ENDIAN_H__ 30 36 #define __amd64_ENDIAN_H__ … … 38 44 #endif 39 45 46 47 48 /** @} 49 */ 50 51 -
libc/arch/amd64/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __amd64__LIMITS_H__ 30 36 #define __amd64__LIMITS_H__ … … 38 44 39 45 46 47 48 /** @} 49 */ 50 51 -
libc/arch/amd64/include/psthread.h
rb3d1e11 re209fc96 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 libcamd64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 57 63 58 64 #endif 65 66 67 /** @} 68 */ 69 70 -
libc/arch/amd64/include/stackarg.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STACKARG_H__ 30 36 #define __LIBC__STACKARG_H__ 31 37 32 38 #endif 39 40 41 /** @} 42 */ 43 44 -
libc/arch/amd64/include/thread.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__amd64THREAD_H__ 30 36 #define __LIBC__amd64THREAD_H__ … … 51 57 52 58 #endif 59 60 61 /** @} 62 */ 63 64 -
libc/arch/amd64/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 56 /** @} 57 */ 58 59 -
libc/arch/amd64/src/thread.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcamd64 amd64 30 * @addtogroup libcia32 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 29 37 #include <thread.h> 30 38 #include <malloc.h> … … 52 60 free(start); 53 61 } 62 63 64 /** @} 65 */ 66 67 -
libc/arch/ia32/include/atomic.h
rb3d1e11 re209fc96 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 libcia32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 68 74 69 75 #endif 76 77 78 /** @} 79 */ 80 81 -
libc/arch/ia32/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ia32_ENDIAN_H__ 30 36 #define __ia32_ENDIAN_H__ … … 39 45 40 46 47 48 49 /** @} 50 */ 51 52 -
libc/arch/ia32/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ia32__LIMITS_H__ 30 36 #define __ia32__LIMITS_H__ … … 37 43 #endif 38 44 45 46 47 /** @} 48 */ 49 50 -
libc/arch/ia32/include/psthread.h
rb3d1e11 re209fc96 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 libcia32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 54 60 55 61 #endif 62 63 64 /** @} 65 */ 66 67 -
libc/arch/ia32/include/stackarg.h
rb3d1e11 re209fc96 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 libcia32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 57 63 58 64 #endif 65 66 67 /** @} 68 */ 69 70 -
libc/arch/ia32/include/thread.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__ia32THREAD_H__ 30 36 #define __LIBC__ia32THREAD_H__ … … 51 57 52 58 #endif 59 60 61 /** @} 62 */ 63 64 -
libc/arch/ia32/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 56 /** @} 57 */ 58 59 -
libc/arch/ia32/src/syscall.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia32 ia32 30 * @brief ia32 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 37 #include <thread.h> 29 38 #include <libc.h> 30 39 … … 46 55 return ret; 47 56 } 57 58 /** @} 59 */ 60 -
libc/arch/ia64/include/atomic.h
rb3d1e11 re209fc96 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 libcia64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 56 62 57 63 #endif 64 65 /** @} 66 */ 67 -
libc/arch/ia64/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ia64_ENDIAN_H__ 30 36 #define __ia64_ENDIAN_H__ … … 39 45 40 46 47 48 /** @} 49 */ 50 -
libc/arch/ia64/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ia64__LIMITS_H__ 30 36 #define __ia64__LIMITS_H__ … … 39 45 40 46 47 48 /** @} 49 */ 50 -
libc/arch/ia64/include/psthread.h
rb3d1e11 re209fc96 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 libcia64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 105 111 106 112 #endif 113 114 /** @} 115 */ 116 -
libc/arch/ia64/include/stack.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ia64_STACK_H__ 30 36 #define __ia64_STACK_H__ … … 36 42 37 43 #endif 44 45 /** @} 46 */ 47 -
libc/arch/ia64/include/stackarg.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STACKARG_H__ 30 36 #define __LIBC__STACKARG_H__ … … 32 38 #endif 33 39 40 41 /** @} 42 */ 43 -
libc/arch/ia64/include/thread.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__ia64THREAD_H__ 30 36 #define __LIBC__ia64THREAD_H__ … … 53 59 54 60 #endif 61 62 /** @} 63 */ 64 -
libc/arch/ia64/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 /** @} 56 */ 57 -
libc/arch/ia64/src/thread.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcia64 ia64 30 * @brief ia64 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 29 37 #include <thread.h> 30 38 #include <malloc.h> … … 53 61 free(tcb); 54 62 } 63 64 /** @} 65 */ 66 -
libc/arch/mips32/include/atomic.h
rb3d1e11 re209fc96 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 libcmips32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 66 72 67 73 #endif 74 75 /** @} 76 */ 77 -
libc/arch/mips32/include/context_offset.h
rb3d1e11 re209fc96 14 14 #define OFFSET_GP 0x2c 15 15 #define OFFSET_TLS 0x30 16 17 /** @} 18 */ 19 -
libc/arch/mips32/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __mips32_ENDIAN_H__ 30 36 #define __mips32_ENDIAN_H__ … … 38 44 #endif 39 45 46 47 /** @} 48 */ 49 -
libc/arch/mips32/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __mips32__LIMITS_H__ 30 36 #define __mips32__LIMITS_H__ … … 38 44 39 45 46 47 /** @} 48 */ 49 -
libc/arch/mips32/include/psthread.h
rb3d1e11 re209fc96 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 libcmips32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 66 72 67 73 #endif 74 75 /** @} 76 */ 77 -
libc/arch/mips32/include/stackarg.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC_mips32_STACKARG_H__ 30 36 #define __LIBC_mips32_STACKARG_H__ … … 51 57 52 58 #endif 59 60 /** @} 61 */ 62 -
libc/arch/mips32/include/thread.h
rb3d1e11 re209fc96 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 libcmips32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 68 74 69 75 #endif 76 77 /** @} 78 */ 79 -
libc/arch/mips32/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 /** @} 56 */ 57 -
libc/arch/mips32/src/syscall.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 mips32 30 * @brief mips32 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 29 37 #include <libc.h> 30 38 … … 53 61 return __mips_reg_v0; 54 62 } 63 64 /** @} 65 */ 66 -
libc/arch/mips32/src/thread.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcmips32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <thread.h> 30 36 #include <malloc.h> … … 49 55 free(tcb); 50 56 } 57 58 /** @} 59 */ 60 -
libc/arch/mips32eb/include/endian.h
rb3d1e11 re209fc96 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 /** @addtogroup libcmipseb32 mipseb32 30 * @brief mipseb32 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 28 37 29 38 #ifndef __mips32eb_ENDIAN_H__ … … 38 47 #endif 39 48 49 /** @} 50 */ 40 51 -
libc/arch/ppc32/include/atomic.h
rb3d1e11 re209fc96 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 libcppc32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 85 91 86 92 #endif 93 94 /** @} 95 */ 96 -
libc/arch/ppc32/include/context_offset.h
rb3d1e11 re209fc96 24 24 #define OFFSET_CR 0x58 25 25 #define OFFSET_CR 0x58 26 27 /** @} 28 */ 29 -
libc/arch/ppc32/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ppc32_ENDIAN_H__ 30 36 #define __ppc32_ENDIAN_H__ … … 37 43 38 44 #endif 45 46 /** @} 47 */ 48 -
libc/arch/ppc32/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ppc32__LIMITS_H__ 30 36 #define __ppc32__LIMITS_H__ … … 36 42 37 43 #endif 44 45 /** @} 46 */ 47 -
libc/arch/ppc32/include/psthread.h
rb3d1e11 re209fc96 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 libcppc32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 73 79 74 80 #endif 81 82 /** @} 83 */ 84 -
libc/arch/ppc32/include/regname.h
rb3d1e11 re209fc96 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 libcppc32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 178 184 179 185 #endif 186 187 /** @} 188 */ 189 -
libc/arch/ppc32/include/stackarg.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STACKARG_H__ 30 36 #define __LIBC__STACKARG_H__ … … 32 38 #endif 33 39 40 41 /** @} 42 */ 43 -
libc/arch/ppc32/include/thread.h
rb3d1e11 re209fc96 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 libcppc32 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 61 67 62 68 #endif 69 70 /** @} 71 */ 72 -
libc/arch/ppc32/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 /** @} 56 */ 57 -
libc/arch/ppc32/src/syscall.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 ppc32 30 * @brief ppc32 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 29 37 #include <libc.h> 30 38 … … 49 57 return __ppc32_reg_r3; 50 58 } 59 60 /** @} 61 */ 62 -
libc/arch/ppc32/src/thread.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc32 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <thread.h> 30 36 #include <malloc.h> … … 49 55 free(tcb); 50 56 } 57 58 /** @} 59 */ 60 -
libc/arch/ppc64/include/atomic.h
rb3d1e11 re209fc96 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 libcppc64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 85 91 86 92 #endif 93 94 /** @} 95 */ 96 -
libc/arch/ppc64/include/context_offset.h
rb3d1e11 re209fc96 23 23 #define OFFSET_R31 0x54 24 24 #define OFFSET_CR 0x58 25 26 /** @} 27 */ 28 -
libc/arch/ppc64/include/endian.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ppc64_ENDIAN_H__ 30 36 #define __ppc64_ENDIAN_H__ … … 37 43 38 44 #endif 45 46 /** @} 47 */ 48 -
libc/arch/ppc64/include/limits.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __ppc64__LIMITS_H__ 30 36 #define __ppc64__LIMITS_H__ … … 36 42 37 43 #endif 44 45 /** @} 46 */ 47 -
libc/arch/ppc64/include/psthread.h
rb3d1e11 re209fc96 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 libcppc64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 73 79 74 80 #endif 81 82 /** @} 83 */ 84 -
libc/arch/ppc64/include/regname.h
rb3d1e11 re209fc96 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 libcppc64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 178 184 179 185 #endif 186 187 /** @} 188 */ 189 -
libc/arch/ppc64/include/stackarg.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__STACKARG_H__ 30 36 #define __LIBC__STACKARG_H__ … … 32 38 #endif 33 39 40 41 /** @} 42 */ 43 -
libc/arch/ppc64/include/thread.h
rb3d1e11 re209fc96 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 libcppc64 30 * @{ 31 */ 32 /** @file 27 33 */ 28 34 … … 61 67 62 68 #endif 69 70 /** @} 71 */ 72 -
libc/arch/ppc64/include/types.h
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #ifndef __LIBC__TYPES_H__ 30 36 #define __LIBC__TYPES_H__ … … 46 52 47 53 #endif 54 55 /** @} 56 */ 57 -
libc/arch/ppc64/src/syscall.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 ppc64 30 * @brief ppc64 architecture dependent parts of libc 31 * @ingroup lc 32 * @{ 33 */ 34 /** @file 35 */ 36 29 37 #include <libc.h> 30 38 … … 49 57 return __ppc32_reg_r3; 50 58 } 59 60 /** @} 61 */ 62 -
libc/arch/ppc64/src/thread.c
rb3d1e11 re209fc96 27 27 */ 28 28 29 /** @addtogroup libcppc64 30 * @{ 31 */ 32 /** @file 33 */ 34 29 35 #include <thread.h> 30 36 #include <malloc.h> … … 50 56 free(start); 51 57 } 58 59 /** @} 60 */ 61 -
libc/generic/libc.c
rb3d1e11 re209fc96 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 /** @addtogroup libc 28 /** @addtogroup lc Libc 29 * @brief HelenOS C library 30 * @{ 31 * @} 32 */ 33 /** @addtogroup libc generic 34 * @ingroup lc 30 35 * @{ 31 36 */ -
libc/malloc/malloc.c
rb3d1e11 re209fc96 438 438 439 439 */ 440 441 /** @addtogroup libcmalloc malloc 442 * @brief Malloc originally written by Doug Lea and ported to HelenOS. 443 * @ingroup libc 444 * @{ 445 */ 446 /** @file 447 */ 448 440 449 441 450 #include <sys/types.h> /* For size_t */ … … 4406 4415 4407 4416 */ 4417 4418 /** @} 4419 */ 4420
Note:
See TracChangeset
for help on using the changeset viewer.