Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: src/sys/arch



Module Name:    src
Committed By:   cube
Date:           Thu Aug 11 20:32:56 UTC 2005

Modified Files:
        src/sys/arch/acorn26/include: frame.h
        src/sys/arch/amd64/include: cpu.h
        src/sys/arch/arm/include: cpu.h
        src/sys/arch/arm/include/arm32: frame.h
        src/sys/arch/i386/include: cpu.h
        src/sys/arch/pc532/include: cpu.h
        src/sys/arch/xen/include: cpu.h
        src/sys/arch/xen/xen: clock.c

Log Message:
Change all archs that did:

#define clockframe somethingelse

to:

struct clockframe {
        struct somethingelse cf_se;
};

and change access macros accordingly.

That means that, at least for that very issue, things will not go
ka-boomy if you don't have the actual definition of struct clockframe
before including systm.h.


To generate a diff of this commit:
cvs rdiff -r1.1 -r1.2 src/sys/arch/acorn26/include/frame.h
cvs rdiff -r1.6 -r1.7 src/sys/arch/amd64/include/cpu.h
cvs rdiff -r1.36 -r1.37 src/sys/arch/arm/include/cpu.h
cvs rdiff -r1.11 -r1.12 src/sys/arch/arm/include/arm32/frame.h
cvs rdiff -r1.117 -r1.118 src/sys/arch/i386/include/cpu.h
cvs rdiff -r1.42 -r1.43 src/sys/arch/pc532/include/cpu.h
cvs rdiff -r1.8 -r1.9 src/sys/arch/xen/include/cpu.h
cvs rdiff -r1.13 -r1.14 src/sys/arch/xen/xen/clock.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index