Changeset 2cf5634 in mainline
- Timestamp:
- 2005-12-22T11:09:29Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7ae4443
- Parents:
- 096d11e5
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r096d11e5 r2cf5634 46 46 47 47 DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\"" 48 CFLAGS = -fno-builtin -fomit-frame-pointer -W error-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/48 CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ 49 49 LFLAGS = -M 50 50 AFLAGS = -
arch/ia64/src/fmath.c
r096d11e5 r2cf5634 44 44 double fmath_get_decimal_exponent(double num) 45 45 { //TODO: 46 double value; 47 // log10(2)*log2(x) => log10(x) 48 /* __asm__ __volatile__ ( \ 49 "fldlg2 #load log10(2) \n\t" \ 50 "fxch %%st(1) \n\t" \ 51 "fyl2x #count st(0)*log2(st(1))->st(1); pop st(0) \n\t" \ 52 : "=t" (value) : "0"(num) ); 53 */ return value; 54 46 return 0; 55 47 } 56 48 -
arch/ppc32/src/fmath.c
r096d11e5 r2cf5634 44 44 double fmath_get_decimal_exponent(double num) 45 45 { //TODO: 46 double value; 47 // log10(2)*log2(x) => log10(x) 48 /* __asm__ __volatile__ ( \ 49 "fldlg2 #load log10(2) \n\t" \ 50 "fxch %%st(1) \n\t" \ 51 "fyl2x #count st(0)*log2(st(1))->st(1); pop st(0) \n\t" \ 52 : "=t" (value) : "0"(num) ); 53 */ return value; 54 46 return 0; 55 47 } 56 48 -
arch/ppc32/src/mm/memory_init.c
r096d11e5 r2cf5634 49 49 panic("Device /memory has no reg property\n"); 50 50 51 size_t total ;51 size_t total = 0; 52 52 int i; 53 53 -
genarch/src/acpi/acpi.c
r096d11e5 r2cf5634 42 42 43 43 struct acpi_signature_map signature_map[] = { 44 { (__u8 *)"APIC", ( struct acpi_sdt_header **) &acpi_madt, "Multiple APIC Description Table" }44 { (__u8 *)"APIC", (void *) &acpi_madt, "Multiple APIC Description Table" } 45 45 }; 46 46 -
generic/src/lib/func.c
r096d11e5 r2cf5634 46 46 { 47 47 #ifdef CONFIG_DEBUG 48 bool rundebugger ;48 bool rundebugger = false; 49 49 50 50 // TODO test_and_set not defined on all arches -
generic/src/time/timeout.c
r096d11e5 r2cf5634 99 99 void timeout_register(timeout_t *t, __u64 time, timeout_handler_t f, void *arg) 100 100 { 101 timeout_t *hlp ;101 timeout_t *hlp = NULL; 102 102 link_t *l, *m; 103 103 ipl_t ipl;
Note:
See TracChangeset
for help on using the changeset viewer.