Skip to content

Commit

Permalink
Replace J9_ARE_NO_BITS_SET with OMR_ARE_NO_BITS_SET
Browse files Browse the repository at this point in the history
Macros of type J9_ARE_*_BITS_SET have been replaced by
OMR_ARE_*_BITS_SET

Signed-off-by: Ashutosh Mehra <asmehra1@in.ibm.com>
  • Loading branch information
Ashutosh Mehra committed Nov 13, 2017
1 parent 5a9e49f commit 5717b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion port/unix/omrsysinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -3450,7 +3450,7 @@ readCgroupFile(struct OMRPortLibrary *portLibrary, int pid, OMRCgroupEntry **cgr
}

for (i = 0; i < sizeof(supportedSubsystems) / sizeof(supportedSubsystems[0]); i++) {
if (J9_ARE_NO_BITS_SET(available, supportedSubsystems[i].flag)
if (OMR_ARE_NO_BITS_SET(available, supportedSubsystems[i].flag)
&& !strcmp(cursor, supportedSubsystems[i].name)
) {
rc = addCgroupEntry(portLibrary, &cgEntryList, hierId, cursor, cgroup);
Expand Down

0 comments on commit 5717b12

Please sign in to comment.