mirror of
https://github.com/openvswitch/ovs
synced 2025-09-03 15:55:19 +00:00
Rename NOT_REACHED to OVS_NOT_REACHED
This allows other libraries to use util.h that has already defined NOT_REACHED. Signed-off-by: Harold Lim <haroldl@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
@@ -189,7 +189,7 @@ want_to_poll_events(int want)
|
||||
{
|
||||
switch (want) {
|
||||
case SSL_NOTHING:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
|
||||
case SSL_READING:
|
||||
return POLLIN;
|
||||
@@ -198,7 +198,7 @@ want_to_poll_events(int want)
|
||||
return POLLOUT;
|
||||
|
||||
default:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -484,7 +484,7 @@ ssl_connect(struct stream *stream)
|
||||
}
|
||||
}
|
||||
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -724,7 +724,7 @@ ssl_wait(struct stream *stream, enum stream_wait_type wait)
|
||||
break;
|
||||
|
||||
default:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
break;
|
||||
@@ -748,7 +748,7 @@ ssl_wait(struct stream *stream, enum stream_wait_type wait)
|
||||
break;
|
||||
|
||||
default:
|
||||
NOT_REACHED();
|
||||
OVS_NOT_REACHED();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user