⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kern_util.cxx

📁 C++ 编写的EROS RTOS
💻 CXX
字号:
/* * Copyright (C) 1998, 1999, 2001, Jonathan S. Shapiro. * * This file is part of the EROS Operating System. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2, * or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#include <kerninc/kernel.hxx>#include <kerninc/util.h>int__assert(const char *expression, const char *file, int line){  fatal("%s:%d: failed assertion `%s'\n", file, line, expression);  return 0;}int__assertex(const void *ptr, const char *expression, const char *file, int line){  printf("Ptr 0x%08x\n", ptr);  fatal("%s:%d: failed assertion `%s'\n", file, line, expression);  return 0;}void__require(const char *expression, const char *file, int line){  dprintf(true, "%s:%d: failed rqt `%s'\n", file, line, expression);}static char hexdigits[16] = {  '0', '1', '2', '3', '4', '5', '6', '7',  '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};charhexdigit(uint8_t b){  return hexdigits[b];}intstrcmp(const char *p1, const char *p2){  while (*p1 && *p2) {    if (*p1 < *p2)      return -1;    if (*p1 > *p2)      return 1;    p2++;    p1++;  }  if (*p1 == *p2)    return 0;  if (*p1 == 0)    return -1;  return 1;}char *strcpy(char *to, const char *from){  char c;  char *dest = to;    do {    c = *from++;    *to++ = c;  } while(c);  return dest;}size_tstrlen(const char *s){  const char *end = s;  while (*end)    end++;  return end - s;}kpa_talign_up(kpa_t addr, uint32_t alignment){    addr += alignment - 1;    addr &= ~((uint64_t)alignment - 1);    return addr;}kpa_talign_down(kpa_t addr, uint32_t alignment){    addr &= ~((uint64_t)alignment - 1);    return addr;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -