prof.h

来自「ARM入门的好帮手.包含了从简单到相对较复杂的程序.」· C头文件 代码 · 共 39 行

H
39
字号
/* -*-C-*- * * $Revision: 1.2 $ *   $Author: amerritt $ *     $Date: 1996/11/04 18:39:34 $ * * Copyright (c) 1996 Advanced RISC Machines Limited. * All Rights Reserved. * *   Project: ANGEL * *     Title: Profiling support */#ifndef angel_prof_h#define angel_prof_h/* Angel_ProfileTimerInitialise is called (if it exists) during Angel * startup.  It typically puts the profile timer into a safe state (off). */void Angel_ProfileTimerInitialise(void);void Angel_ProfileTimerStart(int interval);void Angel_ProfileTimerStop(void);void Angel_TimerIntHandler(unsigned ident, unsigned data, unsigned empty_stack);typedef struct {  unsigned *map;  unsigned *counts;  int numentries;  int enabled;} AngelProfileState;extern AngelProfileState angel_profilestate;#endif

⌨️ 快捷键说明

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