Subversion Repositories HelenOS

Rev

Rev 2927 | Rev 3102 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1175 jermar 1
/*
2071 jermar 2
 * Copyright (c) 2006 Jakub Jermar
1175 jermar 3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1653 cejka 27
 */
28
 
1866 jermar 29
/** @addtogroup libc
1653 cejka 30
 * @{
31
 */
32
/** @file
1175 jermar 33
 */
34
 
35
#include <task.h>
3004 svoboda 36
#include <ipc/ipc.h>
37
#include <async.h>
38
#include <errno.h>
1175 jermar 39
 
1228 jermar 40
task_id_t task_get_id(void)
1175 jermar 41
{
42
    task_id_t task_id;
43
 
1228 jermar 44
    (void) __SYSCALL1(SYS_TASK_GET_ID, (sysarg_t) &task_id);
1175 jermar 45
 
46
    return task_id;
47
}
1653 cejka 48
 
3004 svoboda 49
static int task_spawn_loader(void)
50
{
51
    int phone_id, rc;
52
 
53
    rc = __SYSCALL1(SYS_TASK_SPAWN, (sysarg_t) &phone_id);
54
    if (rc != 0)
55
        return rc;
56
 
57
    return phone_id;
58
}
59
#include <stdio.h>
60
#include <unistd.h>
61
task_id_t task_spawn(const char *path, const char *argv[])
62
{
63
    int phone_id;
64
    ipc_call_t answer;
65
    aid_t req;
66
    int rc;
67
 
68
    phone_id = task_spawn_loader();
69
    if (phone_id < 0) return 0;
70
    printf("phone_id:%d\n", phone_id);
71
 
72
//  getchar();
73
 
74
//  req = async_send_0(phone_id, 1024, &answer);
75
    rc = ipc_data_write_start(phone_id, (void *)path, strlen(path));
76
    printf("->%d\n", rc);
77
    if (rc != EOK) {
78
//      async_wait_for(req, NULL);
79
        return 1;
80
    }
81
//  async_wait_for(req, &rc);
82
 
83
    if (rc != EOK) return 0;
84
 
85
//  rc = async_req_0_0(phone_id, 1025);
86
//  printf("->%d\n", rc);
87
//  if (rc != EOK) return 0;
88
 
89
//  ipc_hangup(phone_id);
90
 
91
    return 1;
92
}
93
 
1866 jermar 94
/** @}
1653 cejka 95
 */