mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
This changes the license of all files in the images/ directory from GPLv2 to the Expat license (so-called MIT). According to git the files have been authored by: Abhishek Dubey Adrian Reber Alexander Mikhalitsyn Alice Frosi Andrei Vagin (Andrew Vagin, Andrey Vagin) Cyrill Gorcunov Dengguangxing Dmitry Safonov Guoyun Sun Kirill Tkhai Kir Kolyshkin Laurent Dufour Michael Holzheu Michał Cłapiński Mike Rapoport Nicolas Viennot Nikita Spiridonov Pavel Emelianov (Pavel Emelyanov) Pavel Tikhomirov Radostin Stoyanov rbruno@gsd.inesc-id.pt Sebastian Pipping Stanislav Kinsburskiy Tycho Andersen Valeriy Vdovin The Expat license (so-called MIT) can be found here: https://opensource.org/licenses/MIT According to that link the correct SPDX short identifier is 'MIT'. https://spdx.org/licenses/MIT.html Signed-off-by: Adrian Reber <areber@redhat.com>
24 lines
733 B
Protocol Buffer
24 lines
733 B
Protocol Buffer
// SPDX-License-Identifier: MIT
|
|
|
|
syntax = "proto2";
|
|
|
|
message ipc_var_entry {
|
|
repeated uint32 sem_ctls = 1;
|
|
required uint32 msg_ctlmax = 2;
|
|
required uint32 msg_ctlmnb = 3;
|
|
required uint32 msg_ctlmni = 4;
|
|
required uint32 auto_msgmni = 5;
|
|
required uint64 shm_ctlmax = 6;
|
|
required uint64 shm_ctlall = 7;
|
|
required uint32 shm_ctlmni = 8;
|
|
required uint32 shm_rmid_forced = 9;
|
|
required uint32 mq_queues_max = 10;
|
|
required uint32 mq_msg_max = 11;
|
|
required uint32 mq_msgsize_max = 12;
|
|
optional uint32 mq_msg_default = 13;
|
|
optional uint32 mq_msgsize_default = 14;
|
|
optional uint32 msg_next_id = 15;
|
|
optional uint32 sem_next_id = 16;
|
|
optional uint32 shm_next_id = 17;
|
|
}
|