Changeset 6b781c0 in mainline for kernel/arch/arm32/include/cycle.h


Ignore:
Timestamp:
2007-06-08T15:02:49Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c03ee1c
Parents:
3ee8a075
Message:

Merge arm32 into trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/include/cycle.h

    r3ee8a075 r6b781c0  
    11/*
    2  * Copyright (c) 2006 Martin Decky
     2 * Copyright (c) 2007 Michal Kebrt
    33 * All rights reserved.
    44 *
     
    3131 */
    3232/** @file
     33 *  @brief Count of CPU cycles.
    3334 */
    3435
     
    3637#define KERN_arm32_CYCLE_H_
    3738
     39/** Returns count of CPU cycles.
     40 *
     41 *  No such instruction on ARM to get count of cycles.
     42 *
     43 *  @return Count of CPU cycles.
     44 */
    3845static inline uint64_t get_cycle(void)
    3946{
    40         /* TODO */
    4147        return 0;
    4248}
Note: See TracChangeset for help on using the changeset viewer.