patch-2.1.23 linux/include/asm-i386/processor.h
Next file: linux/include/asm-i386/smp.h
Previous file: linux/include/asm-i386/poll.h
Back to the patch index
Back to the overall index
- Lines: 32
- Date:
Sun Jan 26 12:07:46 1997
- Orig file:
v2.1.22/linux/include/asm-i386/processor.h
- Orig date:
Tue Dec 31 21:41:08 1996
diff -u --recursive --new-file v2.1.22/linux/include/asm-i386/processor.h linux/include/asm-i386/processor.h
@@ -140,9 +140,6 @@
NULL, 0, 0, 0, 0 /* vm86_info */, \
}
-#define alloc_kernel_stack() __get_free_page(GFP_KERNEL)
-#define free_kernel_stack(page) free_page((page))
-
#define start_thread(regs, new_eip, new_esp) do {\
unsigned long seg = USER_DS; \
__asm__("mov %w0,%%fs ; mov %w0,%%gs":"=r" (seg) :"0" (seg)); \
@@ -155,6 +152,9 @@
regs->esp = new_esp; \
} while (0)
+/* Free all resources held by a thread. */
+extern void release_thread(struct task_struct *);
+
/*
* Return saved PC of a blocked thread.
*/
@@ -162,5 +162,11 @@
{
return ((unsigned long *)t->esp)[3];
}
+
+/* Allocation and freeing of basic task resources. */
+#define alloc_task_struct() kmalloc(sizeof(struct task_struct), GFP_KERNEL)
+#define alloc_kernel_stack(p) __get_free_page(GFP_KERNEL)
+#define free_task_struct(p) kfree(p)
+#define free_kernel_stack(page) free_page((page))
#endif /* __ASM_I386_PROCESSOR_H */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov