Subversion Repositories HelenOS

Rev

Rev 2357 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2357 Rev 2418
Line 38... Line 38...
38
 
38
 
39
#include <arch/types.h>
39
#include <arch/types.h>
40
 
40
 
41
/** Calculate absolute address of function referenced by fptr pointer.
41
/** Calculate absolute address of function referenced by fptr pointer.
42
 *
42
 *
43
 * @param f Function pointer.
43
 * @param fptr Function pointer.
44
 */
44
 */
45
#define FADDR(fptr)     ((uintptr_t) (fptr))
45
#define FADDR(fptr)     ((uintptr_t) (fptr))
46
 
46
 
47
#endif
47
#endif
48
 
48