source: trunk/kernel/syscalls/sys_alarm.c

Last change on this file was 683, checked in by alain, 3 years ago

All modifications required to support the <tcp_chat> application
including error recovery in case of packet loss.A

File size: 1.3 KB
RevLine 
[1]1/*
[23]2 * sys_alarm.c - timed sleep/wakeup
[1]3 *
[23]4 * Author    Alain Greiner (2016,2017)
[683]5 *
[23]6 * Copyright (c) UPMC Sorbonne Universites
[1]7 *
[23]8 * This file is part of ALMOS-MKH.
[1]9 *
[23]10 * ALMOS-MKH is free software; you can redistribute it and/or modify it
[1]11 * under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; version 2.0 of the License.
13 *
[23]14 * ALMOS-MKH is distributed in the hope that it will be useful, but
[1]15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 * General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
[23]20 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
[1]21 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
[457]24#include <hal_kernel_types.h>
[1]25#include <thread.h>
[23]26#include <printk.h>
[1]27#include <cluster.h>
[23]28#include <process.h>
[1]29#include <scheduler.h>
[23]30#include <core.h>
[1]31
[506]32#include <syscalls.h>
33
[23]34////////////////////////////////
[506]35int sys_alarm( uint32_t cycles )
[1]36{
[23]37    thread_t  * this    = CURRENT_THREAD;
38    process_t * process = this->process;
[1]39
[23]40    printk("\n[ERROR] in %s for thread %x in process %x : not implemented yet\n",
[473]41    __FUNCTION__ , this->trdid , process->pid , cycles );
[23]42    return -1;
[1]43}
44
45
46
Note: See TracBrowser for help on using the repository browser.