summaryrefslogtreecommitdiffstats
path: root/cpudetect.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-09 18:39:09 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-09 18:39:09 +0000
commit3a250d3760fd3a7abae66ebda4b5ea5c6387a1aa (patch)
tree2225026b2c6c5f2154e8a14d03b265b0e8588130 /cpudetect.h
parent88aee88ab5e91e5f3c804114a5743fd564d1a198 (diff)
downloadmpv-3a250d3760fd3a7abae66ebda4b5ea5c6387a1aa.tar.bz2
mpv-3a250d3760fd3a7abae66ebda4b5ea5c6387a1aa.tar.xz
cpu cache line length detection
from mplayerxp (Nick Kurshev <nickols_k@mail.ru>) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8861 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.h')
-rw-r--r--cpudetect.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cpudetect.h b/cpudetect.h
index ed1410e9c2..e879f6d047 100644
--- a/cpudetect.h
+++ b/cpudetect.h
@@ -16,6 +16,7 @@ typedef struct cpucaps_s {
int hasSSE;
int hasSSE2;
int isX86;
+ unsigned cl_size; /* size of cache line */
} CpuCaps;
extern CpuCaps gCpuCaps;