Changeset e209fc96 in mainline for libc/arch/mips32
- Timestamp:
- 2006-06-07T20:56:49Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 846848a6
- Parents:
- b3d1e11
- Location:
- libc/arch/mips32
- Files:
-
- 10 edited
-
include/atomic.h (modified) (2 diffs)
-
include/context_offset.h (modified) (1 diff)
-
include/endian.h (modified) (2 diffs)
-
include/limits.h (modified) (2 diffs)
-
include/psthread.h (modified) (2 diffs)
-
include/stackarg.h (modified) (2 diffs)
-
include/thread.h (modified) (2 diffs)
-
include/types.h (modified) (2 diffs)
-
src/syscall.c (modified) (2 diffs)
-
src/thread.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
