Changeset e535eeb in mainline for kernel/generic/src/proc/thread.c


Ignore:
Timestamp:
2010-04-18T12:28:19Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
dec16a2
Parents:
e1b6742
Message:

rename order() to order_suffix(), make it a generic libc string function in user space

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/thread.c

    re1b6742 re535eeb  
    5050#include <synch/rwlock.h>
    5151#include <cpu.h>
    52 #include <func.h>
     52#include <str.h>
    5353#include <context.h>
    5454#include <adt/avl.h>
     
    626626        uint64_t ucycles, kcycles;
    627627        char usuffix, ksuffix;
    628         order(t->ucycles, &ucycles, &usuffix);
    629         order(t->kcycles, &kcycles, &ksuffix);
     628        order_suffix(t->ucycles, &ucycles, &usuffix);
     629        order_suffix(t->kcycles, &kcycles, &ksuffix);
    630630
    631631#ifdef __32_BITS__
Note: See TracChangeset for help on using the changeset viewer.