refactor: replace all stdint::uint32_t into short and more manageable u32_t
[lunaix-os.git] / lunaix-os / includes / arch / x86 / tss.h
index d8256f7b721cbee5a2885001e80cf5a9e8780794..6643344f9955019b1b71d1bbf2ea4b8d970954bd 100644 (file)
@@ -1,14 +1,16 @@
 #ifndef __LUNAIX_TSS_H
 #define __LUNAIX_TSS_H
-#include <stdint.h>
+#include <lunaix/types.h>
 
-struct x86_tss {
-    uint32_t link;
-    uint32_t esp0;
+struct x86_tss
+{
+    u32_t link;
+    u32_t esp0;
     uint16_t ss0;
     uint8_t __padding[94];
 } __attribute__((packed));
 
-void tss_update_esp(uint32_t esp0);
+void
+tss_update_esp(u32_t esp0);
+
 #endif /* __LUNAIX_TSS_H */