2003-06-05 01:28:33 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2007-10-27 00:38:53 +08:00
|
|
|
u_char ngx_linux_kern_ostype[50];
|
|
|
|
u_char ngx_linux_kern_osrelease[50];
|
2006-08-14 23:09:38 +08:00
|
|
|
|
|
|
|
int ngx_linux_rtsig_max;
|
2004-07-15 00:01:42 +08:00
|
|
|
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
static ngx_os_io_t ngx_linux_io = {
|
2003-06-05 01:28:33 +08:00
|
|
|
ngx_unix_recv,
|
2004-04-13 13:27:03 +08:00
|
|
|
ngx_readv_chain,
|
2004-09-07 23:29:22 +08:00
|
|
|
ngx_unix_send,
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_SENDFILE)
|
2003-11-26 23:42:18 +08:00
|
|
|
ngx_linux_sendfile_chain,
|
|
|
|
NGX_IO_SENDFILE
|
2004-04-13 13:27:03 +08:00
|
|
|
#else
|
|
|
|
ngx_writev_chain,
|
|
|
|
0
|
|
|
|
#endif
|
2003-06-05 01:28:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-02-22 22:40:13 +08:00
|
|
|
ngx_int_t
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_specific_init(ngx_log_t *log)
|
2003-06-05 01:28:33 +08:00
|
|
|
{
|
2007-10-27 00:38:53 +08:00
|
|
|
int name[2];
|
|
|
|
size_t len;
|
|
|
|
ngx_err_t err;
|
|
|
|
struct utsname u;
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2007-10-27 00:38:53 +08:00
|
|
|
if (uname(&u) == -1) {
|
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, "uname() failed");
|
2003-06-05 01:28:33 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
2007-10-27 00:38:53 +08:00
|
|
|
(void) ngx_cpystrn(ngx_linux_kern_ostype, (u_char *) u.sysname,
|
|
|
|
sizeof(ngx_linux_kern_ostype));
|
|
|
|
|
|
|
|
(void) ngx_cpystrn(ngx_linux_kern_osrelease, (u_char *) u.release,
|
|
|
|
sizeof(ngx_linux_kern_osrelease));
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
name[0] = CTL_KERN;
|
2004-07-15 00:01:42 +08:00
|
|
|
name[1] = KERN_RTSIGMAX;
|
2004-10-04 23:04:06 +08:00
|
|
|
len = sizeof(ngx_linux_rtsig_max);
|
2005-02-22 22:40:13 +08:00
|
|
|
|
|
|
|
if (sysctl(name, 2, &ngx_linux_rtsig_max, &len, NULL, 0) == -1) {
|
2004-11-21 03:52:20 +08:00
|
|
|
err = ngx_errno;
|
|
|
|
|
2006-08-14 23:09:38 +08:00
|
|
|
if (err != NGX_ENOTDIR && err != NGX_ENOSYS) {
|
2004-11-21 03:52:20 +08:00
|
|
|
ngx_log_error(NGX_LOG_ALERT, log, err,
|
|
|
|
"sysctl(KERN_RTSIGMAX) failed");
|
2004-10-04 04:02:06 +08:00
|
|
|
|
2004-11-21 03:52:20 +08:00
|
|
|
return NGX_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ngx_linux_rtsig_max = 0;
|
2004-07-15 00:01:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_io = ngx_linux_io;
|
|
|
|
|
|
|
|
return NGX_OK;
|
2003-06-05 01:28:33 +08:00
|
|
|
}
|
2004-10-04 04:02:06 +08:00
|
|
|
|
|
|
|
|
2005-02-22 22:40:13 +08:00
|
|
|
void
|
2005-09-07 00:09:32 +08:00
|
|
|
ngx_os_specific_status(ngx_log_t *log)
|
2004-10-04 04:02:06 +08:00
|
|
|
{
|
2005-07-25 17:41:38 +08:00
|
|
|
ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s",
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_linux_kern_ostype, ngx_linux_kern_osrelease);
|
|
|
|
|
2005-07-25 17:41:38 +08:00
|
|
|
ngx_log_error(NGX_LOG_NOTICE, log, 0, "sysctl(KERN_RTSIGMAX): %d",
|
2004-10-04 04:02:06 +08:00
|
|
|
ngx_linux_rtsig_max);
|
|
|
|
}
|