Changeset 4e9aaf5 in mainline for kernel/arch/ia32
- Timestamp:
 - 2010-03-19T18:30:12Z (16 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - 8023571, b535aeb, e2b73d4f
 - Parents:
 - 3c80f2b
 - Location:
 - kernel/arch/ia32
 - Files:
 - 
      
- 2 edited
 
- 
          
  Makefile.inc (modified) (1 diff)
 - 
          
  include/types.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
kernel/arch/ia32/Makefile.inc
r3c80f2b r4e9aaf5 48 48 SUNCC_CFLAGS += -xarch=ssea 49 49 endif 50 50 51 ifeq ($(PROCESSOR),athlon_mp) 51 52 CMN2 = -march=athlon-mp 52 53 SUNCC_CFLAGS += xarch=ssea 53 54 endif 55 54 56 ifeq ($(PROCESSOR),pentium3) 55 57 CMN2 = -march=pentium3 56 58 SUNCC_CFLAGS += -xarch=sse 57 59 endif 60 58 61 ifeq ($(PROCESSOR),pentium4) 59 62 CMN2 = -march=pentium4 60 63 SUNCC_CFLAGS += -xarch=sse2 61 64 endif 65 62 66 ifeq ($(PROCESSOR),core) 63 67 CMN2 = -march=prescott  - 
      
kernel/arch/ia32/include/types.h
r3c80f2b r4e9aaf5 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ … … 36 36 #define KERN_ia32_TYPES_H_ 37 37 38 typedef signed char int8_t; 39 typedef signed short int16_t; 40 typedef signed long int32_t; 41 typedef signed long long int64_t; 42 43 typedef unsigned char uint8_t; 44 typedef unsigned short uint16_t; 45 typedef unsigned long uint32_t; 46 typedef unsigned long long uint64_t; 38 #include <arch/common.h> 47 39 48 40 typedef uint32_t size_t;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  