Use designated initializers for seminfo.

Reviewed by:	markj
Tested by:	pho
Sponsored by:	The FreeBSD Foundation (kib)
MFC after:	1 week
Differential revision:	https://reviews.freebsd.org/D23694
This commit is contained in:
Konstantin Belousov 2020-02-15 23:15:42 +00:00
parent 4d51e175f9
commit 8095050846
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357982

View File

@ -198,15 +198,15 @@ struct sem_undo {
* semaphore info struct
*/
struct seminfo seminfo = {
SEMMNI, /* # of semaphore identifiers */
SEMMNS, /* # of semaphores in system */
SEMMNU, /* # of undo structures in system */
SEMMSL, /* max # of semaphores per id */
SEMOPM, /* max # of operations per semop call */
SEMUME, /* max # of undo entries per process */
SEMUSZ, /* size in bytes of undo structure */
SEMVMX, /* semaphore maximum value */
SEMAEM /* adjust on exit max value */
.semmni = SEMMNI, /* # of semaphore identifiers */
.semmns = SEMMNS, /* # of semaphores in system */
.semmnu = SEMMNU, /* # of undo structures in system */
.semmsl = SEMMSL, /* max # of semaphores per id */
.semopm = SEMOPM, /* max # of operations per semop call */
.semume = SEMUME, /* max # of undo entries per process */
.semusz = SEMUSZ, /* size in bytes of undo structure */
.semvmx = SEMVMX, /* semaphore maximum value */
.semaem = SEMAEM, /* adjust on exit max value */
};
SYSCTL_INT(_kern_ipc, OID_AUTO, semmni, CTLFLAG_RDTUN, &seminfo.semmni, 0,