Changeset 9179d0a in mainline for generic/src/main
- 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/main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/main/kinit.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 kinit.c 31 * @brief Kernel initialization thread. 32 * 33 * This file contains kinit kernel thread which carries out 34 * high level system initialization. 35 * 36 * This file is responsible for finishing SMP configuration 37 * and creation of userspace init tasks. 27 38 */ 28 39 -
generic/src/main/main.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 main.c 31 * @brief Main initialization kernel function for all processors. 32 * 33 * During kernel boot, all processors, after architecture dependent 34 * initialization, start executing code found in this file. After 35 * bringing up all subsystems, control is passed to scheduler(). 36 * 37 * The bootstrap processor starts executing main_bsp() while 38 * the application processors start executing main_ap(). 39 * 40 * @see scheduler() 41 * @see main_bsp() 42 * @see main_ap() 27 43 */ 28 44 -
generic/src/main/uinit.c
reaa202a r9179d0a 27 27 */ 28 28 29 /** 30 * @file uinit.c 31 * @brief Userspace bootstrap thread. 32 * 33 * This file contains uinit kernel thread wich is used to start every 34 * userspace thread including threads created by SYS_THREAD_CREATE syscall. 35 * 36 * @see SYS_THREAD_CREATE 37 */ 38 29 39 #include <main/uinit.h> 30 40 #include <arch/types.h>
Note:
See TracChangeset
for help on using the changeset viewer.
