Lon^
Check me out on the web at Bits and Bobs.
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| The Sandbox | Psexec alternative | 0 | Nov 09, 2006 at 7:23 AM |
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| The Sandbox | Psexec alternative | 0 | Nov 09, 2006 at 7:23 AM |
The Best XNA Movie in the UNIVERSE
Dec 19, 2006 at 8:01 AMAllegro
Yeah ok its not as simple as XNA and I am not sure about it working on consoles (maybe PSP?) but you asked
Regarding the video, up until now I also laughed at XNA for game development but after seeing that video of the first person shooter and how smoothly it ran I will definately have a play at some point!
Loved the video btw, informative and funny. I would have to agree with DanielMD though that the idea of this never being done before etc is over the top but otherwise good stuff.
Jim Allchin: It's time - Windows Vista RTM
Nov 09, 2006 at 6:37 AMThe second half, wow! thats a totally different story and I am quite sad that it seemed the video seemed to finish just as we were getting to what vista IMO is really about. The performance monitoring is going to be sooo handy when things are chugging along and you have no idea why, and then there was the ready boost stuff which obviously only the OS can offer but then the real beast is that self repair system. That is something that really needs the OS to do it, I mean you have things from sysinternals but they dont automatically try and repair the system in clever ways like what was mentioned. I wouldnt agree entirely with "you have to be a magician to fix things"
Five on Nine - Pilot Episode
Nov 06, 2006 at 10:45 AMHow about if you allowed people to sign up for shows in advance with different people each week or something and then you agree with the participants on a time. You could give them each a link or something that only they can use to access the live video feed to contribute there thoughts. You then edit, cut etc and upload the final video for all to see. This way niners can get involved but your safe from getting fired
What ya think?
Five on Nine - Pilot Episode
Nov 03, 2006 at 4:43 PMLooking forward to the next episode, hope this wasn’t the last!
The Advancement of Windows: Michael Fortin - Windows Vista SuperFetch
Oct 17, 2006 at 6:37 AMI think when he said 2GB he meant in the near future i.e. 6 - 12 months, obviously in the distant future 32GB like you say will hopefully be standard. For now with RAM prices so (relatively) high, this technology should fill the gap and stop us having to use the ancient and slow hd so much!
As for that screensaver I think the executable format has changed so out of the box you wont be able to use it on XP although someone has probably hacked it to work from the betas.
The Advancement of Windows: Narayanan Ganapathy - Windows Vista IO
Oct 02, 2006 at 8:19 AMYou can already cancel Async IO using the CancelIO function:
CancelIO
The only problem in WinXP is that this only cancels I/O on the current thread although I think you could probably cancel all I/O by storing thread handles from createthread and queueing APCs to them. As long as you had alertable waits this should work.
I think Vista is going to improve on this by implementing a CancelIOEx which should cancel I/O on all threads without the extra work:
CancelIOEx
The Advancement of Windows: Narayanan Ganapathy - Windows Vista IO
Sep 30, 2006 at 7:01 AMI'll second that about the hung I/O, it’s so incredibly annoying when you click a cancel button and nothing happens! It’s just unfortunate that in order to use it you would have to throw away XP compatibility but in a few years when everyone is using vista this shouldn’t be a problem.
As far as user mode drivers, I've moaned about this before but understand that as Charles says for an input device its really not going to matter and will improve stability etc. It’s not going to matter for your mp3 player because presumably you’re only going to upload a few files to your iPod etc and then close the tool so CPU usage here is irrelevant.
If on the other hand I am playing a game and I want to write stuff out to the display then I really want that to be as fast as possible. Any more CPU power I get including more cores etc I want that devoted to the game and not to drivers. Take Alan wake for example, its going to use four cores.
I can definitely see the argument for reliability over speed for business use, you would rather have all user modes there but in a gaming environment I would rather spend time buying hardware that I know has solid kernel mode drivers and then get the speed. Maybe two versions of the OS are required, one for gaming that is streamlined to have less background services e.g. no indexing etc, basically the gaming OS would be streamlined to run one game as fast as possible (like the Xbox and 360 OS's). You could then have a business version with all the great features mentioned in the video. With the coming of hardware virtualisation (run both versions at the same time) and more and more people having many machines in the home maybe this won’t be an issue in times to come.
Anyway enough of my rambling thanks for the interview
Peter Wieland: User Mode Driver Framework
Sep 20, 2006 at 6:38 PMDo you have any rough benchmarks at the moment comparing a user mode driver to kernel mode and if so what were the results and the device being testing?
On a seperate note, sorry if this is mentioned elsewhere but will the user mode process run at a higher priority to normal apps?
Peter Wieland: User Mode Driver Framework
Sep 18, 2006 at 6:45 PMThe only thing that does worry me is the eagerness to get managed code going. In one sense obviously it would be great to make drivers in a (relative to C) easy language. You get less errors and thus hopefully a better quality product but at what cost.
I had a company laptop with a few managed services and they were certainly draining the memory. When this is taken into consideration with vista using 500MB (yeah I know its beta but still) even when idle and the fact the drivers will surely be slower anyway running in user mode it does make me a bit concerned.
Fingers crossed for an easy to use and performant driver framework