From: malc <av1474@comtv.ru>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [6517] Properly initialize len argument of sysctl and include stdio.h ( perror)
Date: Wed, 04 Feb 2009 20:39:10 +0000 [thread overview]
Message-ID: <E1LUoWc-0005Jq-6Y@cvs.savannah.gnu.org> (raw)
Revision: 6517
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6517
Author: malc
Date: 2009-02-04 20:39:09 +0000 (Wed, 04 Feb 2009)
Log Message:
-----------
Properly initialize len argument of sysctl and include stdio.h (perror)
Modified Paths:
--------------
trunk/cache-utils.c
Modified: trunk/cache-utils.c
===================================================================
--- trunk/cache-utils.c 2009-02-04 14:08:08 UTC (rev 6516)
+++ trunk/cache-utils.c 2009-02-04 20:39:09 UTC (rev 6517)
@@ -37,6 +37,7 @@
}
#elif defined __APPLE__
+#include <stdio.h>
#include <sys/types.h>
#include <sys/sysctl.h>
@@ -46,6 +47,7 @@
unsigned cacheline;
int name[2] = { CTL_HW, HW_CACHELINE };
+ len = sizeof(cacheline);
if (sysctl(name, 2, &cacheline, &len, NULL, 0)) {
perror("sysctl CTL_HW HW_CACHELINE failed");
} else {
reply other threads:[~2009-02-04 20:39 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1LUoWc-0005Jq-6Y@cvs.savannah.gnu.org \
--to=av1474@comtv.ru \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).