Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5626 in orxonox.OLD


Ignore:
Timestamp:
Nov 17, 2005, 12:01:45 PM (19 years ago)
Author:
bensch
Message:

trunk: optimizations, and operator== in BaseObject to compare ObjectNames

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/defs/compiler.h

    r3860 r5626  
    88#endif
    99
    10 #define likely(x)       __builtin_expect((x),1)
    11 #define unlikely(x)     __builtin_expect((x),0)
    12 
    13 #ifdef __unix__
    14 
    15 // deprecated //
    16  #define __LIKELY_IF(condition)  if( likely(condition))
    17  #define __UNLIKELY_IF(condition) if( unlikely(condition))
    18 #else
    19  #define __LIKELY_IF(condition)  if( condition)
    20  #define __UNLIKELY_IF(condition) if( condition)
    21 #endif
     10#define likely(x)       __builtin_expect((x),1)
     11#define unlikely(x)     __builtin_expect((x),0)
    2212
    2313
  • trunk/src/lib/lang/base_object.cc

    r5513 r5626  
    137137}
    138138
     139/**
     140 * compares the ObjectName with an external name
     141 * @param objectName: the name to check.
     142 * @returns true on match, false otherwise.
     143 */
     144bool BaseObject::operator ==(const char* objectName)
     145{
     146  if (likely(this->objectName != NULL && objectName != NULL))
     147    return (strcmp(this->objectName, objectName)) ? false : true;
     148}
     149
    139150
    140151/**
  • trunk/src/lib/lang/base_object.h

    r5513 r5626  
    3939  void whatIs() const;
    4040
     41  //
     42  bool operator== (const char* objectName);
     43
    4144 protected:
    4245  void setClassID(long classID, const char* className);
Note: See TracChangeset for help on using the changeset viewer.