view src/lib/restrict-process-size.h @ 22664:fea53c2725c0

director: Fix director_max_parallel_moves/kicks type Should be uint, not time.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Thu, 09 Nov 2017 12:24:16 +0200
parents 1c1c2a1c85d7
children
line wrap: on
line source

#ifndef RESTRICT_PROCESS_SIZE_H
#define RESTRICT_PROCESS_SIZE_H

#include <sys/time.h>
#ifdef HAVE_SYS_RESOURCE_H
#  include <sys/resource.h>
#endif

/* Restrict max. process size. */
void restrict_process_size(rlim_t bytes);
/* Restrict max. number of processes. */
void restrict_process_count(rlim_t count);
/* Set fd limit to count. */
void restrict_fd_limit(rlim_t count);

/* Get the core dump size limit. Returns 0 if ok, -1 if lookup failed. */
int restrict_get_core_limit(rlim_t *limit_r);
/* Get the process VSZ size limit. Returns 0 if ok, -1 if lookup failed. */
int restrict_get_process_size(rlim_t *limit_r);
/* Get the process count limit. Returns 0 if ok, -1 if lookup failed. */
int restrict_get_process_limit(rlim_t *limit_r);
/* Get the fd limit. Returns 0 if ok, -1 if lookup failed. */
int restrict_get_fd_limit(rlim_t *limit_r);

#endif