Changeset 0f3fc9b in mainline for kernel/arch/ia32


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/ia32/include
Files:
2 edited

Legend:

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

    re7b7be3f r0f3fc9b  
    5252 * function calls.
    5353 */
    54 struct context {
     54typedef struct {
    5555        uintptr_t sp;
    5656        uintptr_t pc;
     
    6060        uint32_t ebp;
    6161        ipl_t ipl;
    62 } __attribute__ ((packed));
     62} __attribute__ ((packed)) context_t;
    6363
    6464#endif
  • kernel/arch/ia32/include/fpu_context.h

    re7b7be3f r0f3fc9b  
    4545
    4646
    47 struct fpu_context {
     47typedef struct {
    4848        uint8_t fpu[512];               /* FXSAVE & FXRSTOR storage area */
    49 };
     49} fpu_context_t;
    5050
    5151#endif
Note: See TracChangeset for help on using the changeset viewer.