1
2
3
4
5
6
7
8
9
 #define SS_ALLSAME              0x00010000              /* All applicable tasks are supplying identical data or performing the
                                                          * same operation.  For instance, in a call to ss_pers_new() this
                                                          * indicates that the new object can be "born synchronized" because
                                                          * all tasks will have the same value for the object without needing
                                                          * to communicate. Absence of this bit simply means that different
                                                          * tasks might be supplying different data but doesn't guarantee that
                                                          * the data is different. (Note: this value must be distinct from TRUE,
                                                          * but don't worry, it's checked at runtime.) */
 #define SS_STRICT               0x00020000              /* Flag that causes certain functions to "try harder" to do something */