Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1819 → Rev 1820

/trunk/kernel/generic/include/proc/scheduler.h
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericproc
/** @addtogroup genericproc
* @{
*/
/** @file
69,6 → 69,5
 
#endif
 
/** @}
/** @}
*/
 
/trunk/kernel/generic/include/proc/uarg.h
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericproc
/** @addtogroup genericproc
* @{
*/
/** @file
48,6 → 48,5
 
#endif
 
/** @}
/** @}
*/
 
/trunk/kernel/generic/include/proc/task.h
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericproc
/** @addtogroup genericproc
* @{
*/
/** @file
58,6 → 58,7
link_t th_head; /**< List of threads contained in this task. */
as_t *as; /**< Address space. */
task_id_t taskid; /**< Unique identity of task */
context_id_t context; /**< Task security context */
 
/** If this is true, new threads can become part of the task. */
bool accept_new_threads;
/trunk/kernel/generic/include/proc/thread.h
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup genericproc
/** @addtogroup genericproc
* @{
*/
/** @file
146,6 → 146,7
 
int priority; /**< Thread's priority. Implemented as index to CPU->rq */
uint32_t tid; /**< Thread ID. */
context_id_t context; /**< Thread security context */
thread_arch_t arch; /**< Architecture-specific data. */
 
192,6 → 193,5
 
#endif
 
/** @}
/** @}
*/
 
/trunk/kernel/generic/include/arch.h
60,6 → 60,7
task_t *task; /**< Current task. */
cpu_t *cpu; /**< Executing cpu. */
as_t *as; /**< Current address space. */
context_id_t context; /**< Current security context. */
};
 
#define THE ((the_t *)(get_stack_base()))
/trunk/kernel/generic/include/typedefs.h
45,6 → 45,7
typedef unsigned long index_t;
 
typedef unsigned long long task_id_t;
typedef unsigned long context_id_t;
 
typedef struct cpu_info cpu_info_t;