????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.15.147.225 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 : /usr/src/linux-headers-3.13.0-49/arch/parisc/include/asm/ |
Upload File : |
#ifndef __PARISC_BARRIER_H #define __PARISC_BARRIER_H /* ** This is simply the barrier() macro from linux/kernel.h but when serial.c ** uses tqueue.h uses smp_mb() defined using barrier(), linux/kernel.h ** hasn't yet been included yet so it fails, thus repeating the macro here. ** ** PA-RISC architecture allows for weakly ordered memory accesses although ** none of the processors use it. There is a strong ordered bit that is ** set in the O-bit of the page directory entry. Operating systems that ** can not tolerate out of order accesses should set this bit when mapping ** pages. The O-bit of the PSW should also be set to 1 (I don't believe any ** of the processor implemented the PSW O-bit). The PCX-W ERS states that ** the TLB O-bit is not implemented so the page directory does not need to ** have the O-bit set when mapping pages (section 3.1). This section also ** states that the PSW Y, Z, G, and O bits are not implemented. ** So it looks like nothing needs to be done for parisc-linux (yet). ** (thanks to chada for the above comment -ggg) ** ** The __asm__ op below simple prevents gcc/ld from reordering ** instructions across the mb() "call". */ #define mb() __asm__ __volatile__("":::"memory") /* barrier() */ #define rmb() mb() #define wmb() mb() #define smp_mb() mb() #define smp_rmb() mb() #define smp_wmb() mb() #define smp_read_barrier_depends() do { } while(0) #define read_barrier_depends() do { } while(0) #define set_mb(var, value) do { var = value; mb(); } while (0) #endif /* __PARISC_BARRIER_H */