Tagged Questions

1
vote
1answer
34 views

Using an IOService port reference to turn off a device…

Hello, This question relates to IO Kit programming on Mac OS X. I have an IO Service Port reference (io_service_t). Is there an API I can use to make whatever is on the end of t …
0
votes
0answers
6 views

changing governors for C and P states

How do you change the governor from Ondemand to powersave(say) for P-states ? How do we do the same thing for C-states ?
0
votes
0answers
10 views

cpufreq directory not present. How to change governor for P states in such a case

One node in my cluster is using ondemand governor which is specified in the directory /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor .. Scaling_governor allows us to choose …
2
votes
1answer
63 views

How do I check when the computer is being put to sleep or wakes up?

I want to make my program aware of the computer being put to sleep or waking up from sleep, possibly have an event that is triggered when either of these occur. Is this possible?
4
votes
1answer
54 views

How can I determine why the machine came out of suspend?

I'd like to be able to determine, programmatically, why a Vista system came out of standby (S3). Any language is fine, though a .NET one would be best. I'm looking to put this co …
25
votes
13answers
725 views

Power Efficient Software Coding

In a typical handheld/portable embedded system device Battery life is a major concern in design of H/W, S/W and the features the device can support. From the Software programming p …
1
vote
2answers
167 views

C# Idle Timer / Sleep / Monitor

How do I turn the monitor back on after the idle timer has turned it off? I have power options in windows 7 set to: Turn off monitor after: 1 minute Go to sleep: Never But I don't …
1
vote
3answers
49 views

configure a PC to default on state

I am writing device software for a PC and for that, I want the PC to be usable as a device. When power is supplied, it should switch on without requiring to press the power button. …
1
vote
0answers
34 views

How to detect Video-off.

Hi. I'm trying to detect video-off by "Power Option" - "Turn off monitor" configuration. When system goes sleeping, it broadcasts WM_POWERBROADCAST. Is there any event broadcaste …
3
votes
1answer
250 views

C#: How to prevent a laptop from going into Stand-By

How can I do this in a C# program? I'm pretty sure it should be possible, since various media programs for example do this so the computer doesn't go into stand-by while watching a …
4
votes
2answers
701 views

how to hook to events / messages in windows using python

in short: i want to intercept suspend/standby messages on my laptop, but my program doesn't receives all relevant messages. background: there's a bug in ms-excel on windows xp/2 …
0
votes
0answers
162 views

I am disabling the Power Mangement option for NIC using VBScript which is setting PnpCapabilities to 56 can anyboy know how to uncheck the checkbox without rebooting

Hi All, I am disabling the Power Mangement option for NIC using VBScript which is setting PnpCapabilities to 56 and after rebooting the system the checkbox which is present in Dev …
7
votes
2answers
509 views

Off screen rendering when laptop shuts screen down?

I have a lengthy number-crunching process which takes advantage of quite abit of OpenGL off-screen rendering. It all works well but when I leave it to work on its own while I go ma …