Using single underscore instead of two underscores for function prefixes
1998-06-07 Martin Baulig <martin@home-of-linux.org> * *.[ch]: Using single underscore instead of two underscores for function prefixes (regexp: ``s,__([rspl])\b,_$1,g'') to avoid ambiguity with mangled C++ names.
This commit is contained in:
committed by
Martin Baulig
parent
85f31a1707
commit
c84923132a
@@ -25,14 +25,14 @@
|
||||
/* Provides information about sysv ipc limits. */
|
||||
|
||||
void
|
||||
glibtop_get_sem_limits__l (glibtop *server, glibtop_sem_limits *buf)
|
||||
glibtop_get_sem_limits_l (glibtop *server, glibtop_sem_limits *buf)
|
||||
{
|
||||
glibtop_init__r (&server, GLIBTOP_SYSDEPS_SEM_LIMITS, 0);
|
||||
glibtop_init_r (&server, GLIBTOP_SYSDEPS_SEM_LIMITS, 0);
|
||||
|
||||
if (server->features & GLIBTOP_SYSDEPS_SEM_LIMITS) {
|
||||
glibtop_call__l (server, GLIBTOP_CMND_SEM_LIMITS, 0, NULL,
|
||||
glibtop_call_l (server, GLIBTOP_CMND_SEM_LIMITS, 0, NULL,
|
||||
sizeof (glibtop_sem_limits), buf);
|
||||
} else {
|
||||
glibtop_get_sem_limits__r (server, buf);
|
||||
glibtop_get_sem_limits_r (server, buf);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user