Changeset 9179d0a in mainline for generic/src/proc
- Timestamp:
- 2006-04-27T17:13:49Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 040e4e9
- Parents:
- eaa202a
- Location:
- generic/src/proc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/scheduler.c
reaa202a r9179d0a 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file scheduler.c 31 * @brief Scheduler and load balancing. 32 * 33 * This file contains the scheduler and kcpulb kernel thread wich 34 * performs load-balancing of per-CPU run queues. 27 35 */ 28 36 -
generic/src/proc/task.c
reaa202a r9179d0a 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file task.c 31 * @brief Task management. 27 32 */ 28 33 … … 116 121 /** Create new task with 1 thread and run it 117 122 * 118 * @param program e_addr Address of program executable image.123 * @param program_addr Address of program executable image. 119 124 * @param name Program name. 120 125 * … … 164 169 /** Syscall for reading task ID from userspace. 165 170 * 166 * @param u addrUserspace address of 8-byte buffer where to store current task ID.171 * @param uspace_task_id Userspace address of 8-byte buffer where to store current task ID. 167 172 * 168 173 * @return Always returns 0. -
generic/src/proc/the.c
reaa202a r9179d0a 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file the.c 31 * @brief THE structure functions. 32 * 33 * This file contains functions to manage the THE structure. 34 * The THE structure exists at the base address of every kernel 35 * stack and carries information about current settings 36 * (e.g. current CPU, current thread, task and address space 37 * and current preemption counter). 27 38 */ 28 39 -
generic/src/proc/thread.c
reaa202a r9179d0a 25 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 /** 30 * @file thread.c 31 * @brief Thread management functions. 27 32 */ 28 33
Note:
See TracChangeset
for help on using the changeset viewer.
