bind9/lib/isc/win32/resource.c

67 lines
1.5 KiB
C
Raw Normal View History

2001-07-06 01:37:10 -04:00
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
2001-07-06 01:37:10 -04:00
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
2001-07-06 01:37:10 -04:00
*/
2008-07-11 19:47:09 -04:00
/* $Id: resource.c,v 1.10 2008/07/11 23:47:09 tbox Exp $ */
2001-07-06 01:37:10 -04:00
#include <config.h>
#include <stdio.h>
2001-07-06 01:37:10 -04:00
#include <isc/platform.h>
#include <isc/resource.h>
#include <isc/result.h>
#include <isc/util.h>
#include "errno2result.h"
/*
* Windows limits the maximum number of open files to 2048
*/
#define WIN32_MAX_OPEN_FILES 2048
2001-07-06 01:37:10 -04:00
isc_result_t
isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) {
isc_resourcevalue_t rlim_value;
int wresult;
if (resource != isc_resource_openfiles)
2001-10-25 22:29:43 -04:00
return (ISC_R_NOTIMPLEMENTED);
2001-07-06 01:37:10 -04:00
if (value == ISC_RESOURCE_UNLIMITED)
rlim_value = WIN32_MAX_OPEN_FILES;
else
rlim_value = min(value, WIN32_MAX_OPEN_FILES);
wresult = _setmaxstdio((int) rlim_value);
if (wresult > 0)
return (ISC_R_SUCCESS);
else
return (isc__errno2result(errno));
2001-07-06 01:37:10 -04:00
}
isc_result_t
isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) {
if (resource != isc_resource_openfiles)
2001-10-25 22:29:43 -04:00
return (ISC_R_NOTIMPLEMENTED);
*value = WIN32_MAX_OPEN_FILES;
return (ISC_R_SUCCESS);
2001-07-06 01:37:10 -04:00
}
isc_result_t
isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) {
return (isc_resource_getlimit(resource, value));
}