Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1097 → Rev 1098

/demos/trunk/base/cabs.c
1,3 → 1,42
/*
* Project: S.Ha.R.K.
*
* Coordinators:
* Giorgio Buttazzo <giorgio@sssup.it>
* Paolo Gai <pj@gandalf.sssup.it>
*
* Authors :
* Paolo Gai <pj@gandalf.sssup.it>
* (see the web pages for full authors list)
*
* ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
*
* http://www.sssup.it
* http://retis.sssup.it
* http://shark.sssup.it
*/
 
/*
* Copyright (C) 2000 Giorgio Buttazzo, Paolo Gai
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*
* CVS : $Id: cabs.c,v 1.2 2002-10-28 08:11:29 pj Exp $
*/
 
/*--------------------------------------------------------------*/
/* TEST ON CABS */
/*--------------------------------------------------------------*/
64,12 → 103,12
/* Default action for an kern exception is */
kern_cli();
ll_gettime(TIME_EXACT, &t),
kern_printf("\nS.Ha.R.K. Exception raised!!!"
"\nTime (s:ns) :%ld:%ld"
"\nException number:%d (numbers in include/bits/errno.h)"
"\nPID :%d\n",
t.tv_sec, t.tv_nsec, info->si_value.sival_int,
info->si_task);
cprintf("\nS.Ha.R.K. Exception raised!!!"
"\nTime (s:ns) :%ld:%ld"
"\nException number:%d (numbers in include/bits/errno.h)"
"\nPID :%d\n",
t.tv_sec, t.tv_nsec, info->si_value.sival_int,
info->si_task);
sys_abort(1);
}
 
109,7 → 148,7
void byebye(void *arg)
{
grx_close();
kern_printf("Bye Bye!\n");
cprintf("Bye Bye!\n");
}
 
/*--------------------------------------------------------------*/
145,10 → 184,9
}
if (grx_open(640, 480, 8) < 0) {
kern_printf("GRX Err\n");
cprintf("GRX Err\n");
sys_abort(1);
}
kern_printf("Video card ok!\n");
 
grx_clear(BLACK);
 
/demos/trunk/base/ego.c
18,11 → 18,11
 
/**
------------
CVS : $Id: ego.c,v 1.1.1.1 2002-09-02 09:37:41 pj Exp $
CVS : $Id: ego.c,v 1.2 2002-10-28 08:11:29 pj Exp $
 
File: $File$
Revision: $Revision: 1.1.1.1 $
Last update: $Date: 2002-09-02 09:37:41 $
Revision: $Revision: 1.2 $
Last update: $Date: 2002-10-28 08:11:29 $
------------
**/
 
126,12 → 126,12
/* Default action for an kern exception is */
kern_cli();
ll_gettime(TIME_EXACT, &t),
kern_printf("\nS.Ha.R.K. Exception raised!!!"
"\nTime (s:ns) :%ld:%ld"
"\nException number:%d (numbers in include/bits/errno.h)"
"\nPID :%d\n",
t.tv_sec, t.tv_nsec, info->si_value.sival_int,
info->si_task);
cprintf("\nS.Ha.R.K. Exception raised!!!"
"\nTime (s:ns) :%ld:%ld"
"\nException number:%d (numbers in include/bits/errno.h)"
"\nPID :%d\n",
t.tv_sec, t.tv_nsec, info->si_value.sival_int,
info->si_task);
sys_abort(1);
}
 
166,7 → 166,7
void byebye(void *arg)
{
grx_close();
kern_printf("Bye Bye!\n");
cprintf("Bye Bye!\n");
}
 
/****************************** MAIN ******************************/
201,10 → 201,9
}
 
if (grx_open(640, 480, 8) < 0) {
kern_printf("GRX Err\n");
cprintf("GRX Err\n");
sys_abort(1);
}
kern_printf("Video card ok!\n");
 
/* set the keyboard handler to exit correctly */
emerg.ascii = 'x';
/demos/trunk/base/fly.c
18,11 → 18,11
 
/**
------------
CVS : $Id: fly.c,v 1.1.1.1 2002-09-02 09:37:41 pj Exp $
CVS : $Id: fly.c,v 1.2 2002-10-28 08:11:29 pj Exp $
 
File: $File$
Revision: $Revision: 1.1.1.1 $
Last update: $Date: 2002-09-02 09:37:41 $
Revision: $Revision: 1.2 $
Last update: $Date: 2002-10-28 08:11:29 $
------------
**/
 
147,7 → 147,7
void byebye(void *arg)
{
grx_close();
kern_printf("Bye Bye!\n");
cprintf("Bye Bye!\n");
}
 
/****************************** MAIN ******************************/
172,10 → 172,9
}
if (grx_open(640, 480, 8) < 0) {
kern_printf("GRX Err\n");
cprintf("GRX Err\n");
sys_abort(1);
}
kern_printf("Video card ok!\n");
 
/* The scenario */
grx_rect(XMIN-D-1, YMIN-D-1, XMAX+D+1, YMAX+D+1, 14);