From 495ad009384fe82044c0db7d53153f684f309e50 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 19 May 2015 18:28:58 +0100 Subject: [PATCH] kernel.h: kill dead field --- Kernel/include/kernel.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Kernel/include/kernel.h b/Kernel/include/kernel.h index dd4db59e..09a91a77 100644 --- a/Kernel/include/kernel.h +++ b/Kernel/include/kernel.h @@ -334,16 +334,15 @@ typedef struct p_tab { void * p_wait; /* Address of thing waited for */ uint16_t p_page; /* Page mapping data */ uint16_t p_page2; /* It's really four bytes for the platform */ + /* Update kernel.def if you change fields above this comment */ #ifdef udata struct u_data *p_udata; /* Udata pointer for platforms using dynamic udata */ #endif - /* Update kernel.def if you change fields above this comment */ /* Everything below here is overlaid by time info at exit */ uint16_t p_priority; /* Process priority */ uint32_t p_pending; /* Bitmask of pending signals */ uint32_t p_ignored; /* Bitmask of ignored signals */ uint32_t p_held; /* Bitmask of held signals */ - struct u_block *p_ublk; /* Pointer to udata block when not running */ uint16_t p_waitno; /* wait #; for finding longest waiting proc */ uint16_t p_timeout; /* timeout in centiseconds - 1 */ /* 0 indicates no timeout, 1 = expired */ -- 2.34.1