Changeset edebc15c in mainline for kernel/generic/include/macros.h


Ignore:
Timestamp:
2008-07-27T03:50:53Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4541ae4
Parents:
5e8ddf5
Message:

physical memory detection in MSIM (discontinous regions supported)
remove Sgi Indy (ARC) support — it was unmaintaned, untested for years and without uspace support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/macros.h

    r5e8ddf5 redebc15c  
    4949#define max(a,b)        ((a) > (b) ? (a) : (b))
    5050
    51 /** Return true if the interlvals overlap.
     51/** Return true if the intervals overlap.
    5252 *
    5353 * @param s1 Start address of the first interval.
     
    7070#define SIZE2MB(size) (size >> 20)
    7171
     72#define KB2SIZE(size) (size << 10)
     73#define MB2SIZE(size) (size << 20)
     74
    7275#define STRING(arg) STRING_ARG(arg)
    7376#define STRING_ARG(arg) #arg
Note: See TracChangeset for help on using the changeset viewer.