CS318 - Pintos
Pintos source browser for JHU CS318 course
Data Fields
kernel_thread_frame Struct Reference

Stack frame for kernel_thread(). More...

Data Fields

void * eip
 Return address. More...
 
thread_funcfunction
 Function to call. More...
 
void * aux
 Auxiliary data for function. More...
 

Detailed Description

Stack frame for kernel_thread().

Definition at line 41 of file thread.c.

Field Documentation

◆ aux

void* kernel_thread_frame::aux

Auxiliary data for function.

Definition at line 45 of file thread.c.

Referenced by thread_create().

◆ eip

void* kernel_thread_frame::eip

Return address.

Definition at line 43 of file thread.c.

Referenced by thread_create().

◆ function

thread_func* kernel_thread_frame::function

Function to call.

Definition at line 44 of file thread.c.

Referenced by thread_create().


The documentation for this struct was generated from the following file: