Changeset 0f3fc9b in mainline for kernel/arch/sparc64/include


Ignore:
Timestamp:
2007-01-22T13:34:55Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
726e1043
Parents:
e7b7be3f
Message:

typedef elimination

Location:
kernel/arch/sparc64/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/include/context.h

    re7b7be3f r0f3fc9b  
    5757 * function calls.
    5858 */
    59 struct context {
     59typedef struct {
    6060        uintptr_t sp;           /* %o6 */
    6161        uintptr_t pc;           /* %o7 */
     
    7777        uint64_t l7;
    7878        ipl_t ipl;
    79 };
     79} context_t;
    8080
    8181#endif
  • kernel/arch/sparc64/include/fpu_context.h

    re7b7be3f r0f3fc9b  
    4141#define FPU_CONTEXT_ALIGN       8
    4242
    43 struct fpu_context {
     43typedef struct {
    4444        uint64_t        d[32];
    4545        uint64_t        fsr;
    46 };
     46} fpu_context_t;
    4747
    4848#endif
Note: See TracChangeset for help on using the changeset viewer.