Changeset 06e1e95 in mainline for kernel/arch/ia64/src


Ignore:
Timestamp:
2006-09-14T17:09:21Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1d1f5d3
Parents:
e5ecc02
Message:

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

Location:
kernel/arch/ia64/src
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/ia64.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64
     29/** @addtogroup ia64
    3030 * @{
    3131 */
     
    153153}
    154154
    155  /** @}
     155/** @}
    156156 */
    157 
  • kernel/arch/ia64/src/interrupt.c

    re5ecc02 r06e1e95  
    217217        }
    218218
    219         if (istate->in4 < SYSCALL_END)
    220                 return syscall_table[istate->in4](istate->in0, istate->in1, istate->in2, istate->in3);
    221         else
    222                 panic("Undefined syscall %d", istate->in4);
    223                
    224         return -1;
     219        return syscall_handler(istate->in0, istate->in1, istate->in2, istate->in3, istate->in4);
    225220}
    226221
  • kernel/arch/ia64/src/mm/as.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64mm
     29/** @addtogroup ia64mm
    3030 * @{
    3131 */
     
    8686}
    8787
    88  /** @}
     88/** @}
    8989 */
    90 
  • kernel/arch/ia64/src/mm/frame.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64mm
     29/** @addtogroup ia64mm 
    3030 * @{
    3131 */
     
    5555}
    5656
    57  /** @}
     57/** @}
    5858 */
    59 
  • kernel/arch/ia64/src/mm/page.c

    re5ecc02 r06e1e95  
    2828 */
    2929
    30  /** @addtogroup ia64mm
     30/** @addtogroup ia64mm 
    3131 * @{
    3232 */
     
    264264}
    265265
    266  /** @}
    267  */
    268 
     266/** @}
     267 */
  • kernel/arch/ia64/src/mm/vhpt.c

    re5ecc02 r06e1e95  
    3232/** @file
    3333*/
    34                                                                                                        
    3534
    3635#include <arch/mm/vhpt.h>
    3736#include <mm/frame.h>
    3837#include <print.h>
    39 
    4038
    4139static vhpt_entry_t* vhpt_base;
  • kernel/arch/ia64/src/proc/scheduler.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64proc
     29/** @addtogroup ia64proc
    3030 * @{
    3131 */
     
    8989}
    9090
    91  /** @}
     91/** @}
    9292 */
    93 
  • kernel/arch/ia64/src/putchar.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64   
     29/** @addtogroup ia64   
    3030 * @{
    3131 */
     
    4141}
    4242
    43  /** @}
     43/** @}
    4444 */
    45 
  • kernel/arch/ia64/src/ski/ski.c

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia64   
     29/** @addtogroup ia64   
    3030 * @{
    3131 */
     
    159159}
    160160
    161 
    162161static chardev_operations_t ski_ops = {
    163162        .resume = ski_kb_enable,
     
    166165        .read = ski_getchar_blocking
    167166};
    168 
    169167
    170168/** Initialize debug console
     
    189187
    190188}
     189
    191190/** Setup console sysinfo (i.e. Keyboard IRQ)
    192191 *
     
    201200}
    202201
    203  /** @}
    204  */
    205 
     202/** @}
     203 */
Note: See TracChangeset for help on using the changeset viewer.