/[rtmk]/rtmk/tm.h.in
ViewVC logotype

Diff of /rtmk/tm.h.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by jrydberg, Fri Dec 7 02:05:41 2001 UTC revision 1.2 by jrydberg, Sat Dec 8 00:06:54 2001 UTC
# Line 18  You should have received a copy of the G Line 18  You should have received a copy of the G
18  along with this program; if not, write to the Free Software  along with this program; if not, write to the Free Software
19  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20    
21    /* ??? this should go somewhere else.  */
22    
23    #if __GNUC__ && __GNUC__ >= 3
24    #define LIKELY(expression)   (__builtin_expect(!!(expression), 1))
25    #define UNLIKELY(expression) (__builtin_expect(!!(expression), 0))
26    #else
27    #define LIKELY(expression)   (expression)
28    #define UNLIKELY(expression) (expression)
29    #endif
30    
31  #include "cpus.h"  #include "cpus.h"
32    

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26