source: rtems/c/src/lib/libbsp/shared/bsppretaskinghook.c @ 2e92a5d

4.104.115
Last change on this file since 2e92a5d was 61814f9, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 19:13:05

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • bootcard.c, bspgetworkarea.c, bsppretaskinghook.c, include/bootcard.h: Change size_t to ssize_t on bsp_get_work_area(). On 16-bit architectures, size_t can be 16-bits which would limit the work area to 64K.
  • Property mode set to 100644
File size: 409 bytes
Line 
1/*
2 *  This is a shared BSP pretasking hook which does nothing.
3 *
4 *  COPYRIGHT (c) 1989-2008.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#include <bsp/bootcard.h>
15
16void bsp_pretasking_hook(void)
17{
18  /* Do nothing */
19}
Note: See TracBrowser for help on using the repository browser.