X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Kernel%2Finclude%2Fthreads_int.h;h=66bb8c16379dd055646f96ef62850eef3eda0470;hb=7536e8afcc3018c4ca2a4aa8f8422cf86a6c188c;hp=0192e7a254ead5db9aa12b61c90c54a247c16a91;hpb=def8ed174653a8e4b4ecbd58561a5bf8c908aa7a;p=tpg%2Facess2.git diff --git a/Kernel/include/threads_int.h b/Kernel/include/threads_int.h index 0192e7a2..66bb8c16 100644 --- a/Kernel/include/threads_int.h +++ b/Kernel/include/threads_int.h @@ -8,6 +8,9 @@ #include #include + +typedef struct sProcess tProcess; + /** * \brief IPC Message */ @@ -19,6 +22,23 @@ typedef struct sMessage Uint8 Data[]; //!< Message data } tMsg; +/** + * \brief Process state + */ +struct sProcess +{ + tPID PID; + int nThreads; + + tUID UID; //!< User ID + tGID GID; //!< User and Group + tMemoryState MemState; + + int MaxFD; + char *CurrentWorkingDir; + char *RootDir; +}; + /** * \brief Core threading structure * @@ -38,19 +58,15 @@ struct sThread void *WaitPointer; //!< What (Mutex/Thread/other) is the thread waiting on int RetStatus; //!< Return Status - Uint TID; //!< Thread ID - Uint TGID; //!< Thread Group (Process) + tTID TID; //!< Thread ID + struct sProcess *Process; //!< Thread Group / Process struct sThread *Parent; //!< Parent Thread - Uint UID, GID; //!< User and Group char *ThreadName; //!< Name of thread // --- arch/proc.c's responsibility //! Kernel Stack Base tVAddr KernelStack; - //! Memory Manager State - tMemoryState MemState; - //! State on task switch tTaskState SavedState; @@ -64,11 +80,11 @@ struct sThread int Quantum, Remaining; //!< Quantum Size and remaining timesteps int Priority; //!< Priority - 0: Realtime, higher means less time - Uint Config[NUM_CFG_ENTRIES]; //!< Per-process configuration + int _errno; volatile int CurCPU; - int bInstrTrace; + bool bInstrTrace; // --- event.c Uint32 EventState;