tkernel_2/lib/libsys/src/bitset.c | bare source | permlink (0.01 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * T-Kernel 2.0 Software Package 4: * 5: * Copyright 2011 by Ken Sakamura. 6: * This software is distributed under the latest version of T-License 2.x. 7: *---------------------------------------------------------------------- 8: * 9: * Released by T-Engine Forum(http://www.t-engine.org/) at 2011/05/17. 10: * Modified by T-Engine Forum at 2013/02/12. 11: * Modified by TRON Forum(http://www.tron.org/) at 2015/06/01. 12: * 13: *---------------------------------------------------------------------- 14: */ 15: 16: /* 17: * bitset.c (libsys) 18: */ 19: 20: #include <sys/bitop.h> 21: 22: EXPORT void BitSet( void *base, UW offset ) 23: { 24: #if BIGENDIAN 25: ((UB*)base)[offset >> 3] |= ((UB)0x80U >> (offset & 0x00000007U)); 26: #else 27: ((UB*)base)[offset >> 3] |= ((UB)0x01U << (offset & 0x00000007U)); 28: #endif 29: }