Changeset cf26ba9 in mainline for generic/src/time


Ignore:
Timestamp:
2006-05-01T12:24:32Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
953b0f33
Parents:
ea199e5
Message:

Improve Doxygen-comments.

Location:
generic/src/time
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • generic/src/time/clock.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        clock.c
     31 * @brief       High-level clock interrupt handler.
     32 *
     33 * This file contains the clock() function which is the source
     34 * of preemption. It is also responsible for executing expired
     35 * timeouts.
     36 */
     37 
    2938#include <time/clock.h>
    3039#include <time/timeout.h>
  • generic/src/time/delay.c

    rea199e5 rcf26ba9  
    2727 */
    2828
     29/**
     30 * @file        delay.c
     31 * @brief       Active delay function.
     32 */
     33 
    2934#include <time/delay.h>
    3035#include <arch/types.h>
  • generic/src/time/timeout.c

    rea199e5 rcf26ba9  
    2525 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27 */
     28
     29/**
     30 * @file        timeout.c
     31 * @brief       Timeout management functions.
    2732 */
    2833
Note: See TracChangeset for help on using the changeset viewer.