mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
For big #ifdef/#endif chunks we do a comment /* */ at #endif. Add missing ones. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
33 lines
792 B
C
33 lines
792 B
C
#ifndef __CR_PID_H__
|
|
#define __CR_PID_H__
|
|
|
|
#include "stdbool.h"
|
|
|
|
struct pid {
|
|
/*
|
|
* The @real pid is used to fetch tasks during dumping stage,
|
|
* This is a global pid seen from the context where the dumping
|
|
* is running.
|
|
*/
|
|
pid_t real;
|
|
|
|
/*
|
|
* The @virt pid is one which used in the image itself and keeps
|
|
* the pid value to be restored. This pid fetched from the
|
|
* dumpee context, because the dumpee might have own pid namespace.
|
|
*/
|
|
pid_t virt;
|
|
};
|
|
|
|
/*
|
|
* When we have to restore a shared resource, we mush select which
|
|
* task should do it, and make other(s) wait for it. In order to
|
|
* avoid deadlocks, always make task with lower pid be the restorer.
|
|
*/
|
|
static inline bool pid_rst_prio(unsigned pid_a, unsigned pid_b)
|
|
{
|
|
return pid_a < pid_b;
|
|
}
|
|
|
|
#endif /* __CR_PID_H__ */
|