Rev 1248 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1248 | Rev 1702 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** @addtogroup main |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
- | 32 | ||
29 | /** |
33 | /** |
30 | * @file uinit.c |
34 | * @file |
31 | * @brief Userspace bootstrap thread. |
35 | * @brief Userspace bootstrap thread. |
32 | * |
36 | * |
33 | * This file contains uinit kernel thread wich is used to start every |
37 | * This file contains uinit kernel thread wich is used to start every |
34 | * userspace thread including threads created by SYS_THREAD_CREATE syscall. |
38 | * userspace thread including threads created by SYS_THREAD_CREATE syscall. |
35 | * |
39 | * |
Line 58... | Line 62... | ||
58 | 62 | ||
59 | free((uspace_arg_t *) arg); |
63 | free((uspace_arg_t *) arg); |
60 | 64 | ||
61 | userspace(&uarg); |
65 | userspace(&uarg); |
62 | } |
66 | } |
- | 67 | ||
- | 68 | /** @} |
|
- | 69 | */ |
|
- | 70 |