Displaying 5 results from an estimated 5 matches for "cpucount".
2012 Feb 08
3
Something really went south with 1.4-rc2
...c), expect failure
Whereupon the app crashed to the desktop.
Here is my script to run the app:
#!/bin/bash
date
env WINEPREFIX="/home/john/.wine" \
wine "C:/Program Files/Maxis/SimCity 4/Apps/SimCity 4.exe" \
-intro:off -CustomResolution:enabled -r1920x1080x32 -d:directx \
-CPUcount:1 &>~/sc4.log
date
The two date items let me see how long the app stayed up.
Here is the record before the crash noted here
Wed Feb 8 12:44:26 EST 2012
Wed Feb 8 12:47:05 EST 2012
This app was working fine on 4.1-rc1, albeit in software mode. Today it fails on either setting.
I will...
2007 Apr 18
0
[PATCH 13/21] i386 Gdt page isolation
...init do_boot_cpu(int api
unsigned long start_eip;
unsigned short nmi_high = 0, nmi_low = 0;
+ if (!cpu_gdt_descr[cpu].address &&
+ !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
+ printk("Failed to allocate GDT for CPU %d\n", cpu);
+ return 1;
+ }
+
++cpucount;
/*
Index: linux-2.6.14-zach-work/arch/i386/kernel/head.S
===================================================================
--- linux-2.6.14-zach-work.orig/arch/i386/kernel/head.S 2005-11-04 17:37:01.000000000 -0800
+++ linux-2.6.14-zach-work/arch/i386/kernel/head.S 2005-11-04 17:55:00.000000...
2007 Apr 18
0
[PATCH 13/21] i386 Gdt page isolation
...init do_boot_cpu(int api
unsigned long start_eip;
unsigned short nmi_high = 0, nmi_low = 0;
+ if (!cpu_gdt_descr[cpu].address &&
+ !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
+ printk("Failed to allocate GDT for CPU %d\n", cpu);
+ return 1;
+ }
+
++cpucount;
/*
Index: linux-2.6.14-zach-work/arch/i386/kernel/head.S
===================================================================
--- linux-2.6.14-zach-work.orig/arch/i386/kernel/head.S 2005-11-04 17:37:01.000000000 -0800
+++ linux-2.6.14-zach-work/arch/i386/kernel/head.S 2005-11-04 17:55:00.000000...
2007 Apr 18
3
Per-cpu patches on top of PDA stuff...
Hi Jeremy, all,
Sorry this took so long, spent last week in Japan at OSDL conf then
netconf. After several false starts, I ended up with a very simple
implementation, which clashes significantly with your work since then
8(. I've pushed the patches anyway, but it's going to be significant
work for me to re-merge them, so I wanted your feedback first.
The first patch simply changes
2007 Apr 18
3
Per-cpu patches on top of PDA stuff...
Hi Jeremy, all,
Sorry this took so long, spent last week in Japan at OSDL conf then
netconf. After several false starts, I ended up with a very simple
implementation, which clashes significantly with your work since then
8(. I've pushed the patches anyway, but it's going to be significant
work for me to re-merge them, so I wanted your feedback first.
The first patch simply changes