Slashdot Mirror


Inside the Windows Vista Kernel

Reader trparky recommends an article on Technet (which, be warned, is rather chaotically formatted). Mark Russinovich, whose company Winternals Software was recently bought by Microsoft, has published the first of a series of articles on what's new in the Vista kernel. Russinovich writes: "In this issue, I'll look at changes in the areas of processes and threads, and in I/O. Future installments will cover memory management, startup and shutdown, reliability and recovery, and security. The scope of this article comprises changes to the Windows Vista kernel only, specifically Ntoskrnl.exe and its closely associated components. Please remember that there are many other significant changes in Windows Vista that fall outside the kernel proper and therefore won't be covered."

56 of 298 comments (clear)

  1. Soft links? by Libor+Vanek · · Score: 3, Interesting

    From the article: "...the symbolic file link (or as it's called in UNIX, the soft link) finally arrives in Windows Vista." - anybody heard "soft link"? Me (after 10 years of using Linux) never...

    1. Re:Soft links? by tuffy · · Score: 5, Informative

      The symlink(2) manpage mentions that they're also known as "soft links", as opposed to the hard links created by link(2). It's not a very common usage, though.

      --

      Ita erat quando hic adveni.

    2. Re:Soft links? by Moridineas · · Score: 3, Informative

      Absolutely. I guess "symbolic link" is the more common term, but soft link is hardly rare, and differentiates a link from a hard link. (think ln -s here)

      From wiki:

      Soft Link and Hard Link

    3. Re:Soft links? by doshell · · Score: 2, Insightful

      The usage is established, but "symlink" or "symbolic link" are far more common:

      Wikipedia: Wikipedia article (redirects to "Symbolic link" article)

      Google hits: ~1M hits for ("symbolic link" OR "symlink") unix vs. ~419K hits for ("soft link" OR "softlink") unix ("unix" appended to avoid potentially irrelevant matches)

      Ocurrences in manpages (my Gentoo Linux system):

      $ find /usr/share/man -type f -name '*.gz' | xargs zcat | grep -i "soft link" | wc -l
      27
      $ find /usr/share/man -type f -name '*.gz' | xargs zcat | grep -i "softlink" | wc -l
      1
      $ find /usr/share/man -type f -name '*.gz' | xargs zcat | grep -i "symlink" | wc -l
      380
      $ find /usr/share/man -type f -name '*.gz' | xargs zcat | grep -i "symbolic link" | wc -l
      1458

      (Yes, it might not be that elegant, but my shell scripting skills are not the best.)

      --
      Score: i, Imaginary
    4. Re:Soft links? by NuShrike · · Score: 2, Informative

      Or a comparison with Google Trends

    5. Re:Soft links? by Knuckles · · Score: 3, Informative

      Let's try it again with proper quotes. Amazing how often people get this wrong. It looks like some school in India has recently started using this term,

      --
      "When I first heard Daydream Nation it quite frankly scared the living shit out of me." -- Matthew Stearns
    6. Re:Soft links? by wirelessbuzzers · · Score: 5, Funny

      Does anyone else find it amusing that Wikipedia's page on soft links is a redirect?

      --
      I hereby place the above post in the public domain.
  2. Re:MMCSS by swissmonkey · · Score: 4, Informative

    Yet another (promised?) feature they could not deliver.

    ??? This is in Vista

    thought for a second that they required admin access to activate MMCSS; but upon a second reading, it looks like they've merely reimplemented nice with some kind of setuid root service.

    "nice" as you call it has been in NT since its conception.
    He's talking about multimedia specific scheduling related to I/O operations here, you might want to read this whole document a 3rd time, he's not talking about "regular" kernel scheduling of threads/processes, he's talking about scheduling based on I/O needs which is a whole different beast.

  3. Finally... by physicsnick · · Score: 4, Insightful

    Everytime I read anything about Vista's new features, I hear myself saying "fucking finally" like half a dozen times. Symlinks? Cancelling I/O? These are things other, better operating systems have had for over a decade. Anyone wanna start a pool for when they'll roll out a patent for symlinks?

    1. Re:Finally... by cnettel · · Score: 5, Informative

      Cancelling I/O has been in Windows for long, "just" not always done properly. I have seen similar issues while killing processes in other OSes where they are stuck in some I/O. One reason for why this happens more frequently in Windows (in addition to bad drivers/a complicated driver model) is the fact that asynchronous I/O is so common. That way, you might not see the that the IO got stuck until you try to kill the process.

    2. Re:Finally... by Anonymous Coward · · Score: 4, Interesting

      How much praise was adorned on Linux when it got an O(1) scheduler? NT has had it for over a decade.

    3. Re:Finally... by RAMMS+EIN · · Score: 5, Informative

      `` I have seen similar issues while killing processes in other OSes where they are stuck in some I/O.''

      Oh, the horrors! I've had this happen to me many times, as well, especially on Linux. Not even a kill -9 would get rid of the wedged process. Why is there even such a thing as "non-interruptible sleep"? If I don't need the process anymore, I should be able to get rid of it no matter what.

      And wedged drivers, too. I think you can still see this for yourself by doing I/O with some USB device, and then yanking it out while the I/O is in progress. You get at least one process that you can't kill (I guess the comatose state causes ethical issues), and probably a driver you can't unload (although maybe new kernels allow you to do that). If you're "lucky", you get a whole lot of hardware devices that you can't use anymore, and any program that tries to gets into the dreaded D state.

      --
      Please correct me if I got my facts wrong.
    4. Re:Finally... by dave562 · · Score: 2, Insightful
      But I am also amazed at how "excited" people are over new-4-Windows features like this. Might as well jump right into Linux/UNIX and get it all now.

      The longer operating systems are around for, the more heterogenuous they will become. Although Linux/UNIX might have a bunch of features that Microsoft is getting around to implementing, similar arguments can be made in the other direction as well. The fact of the matter is that computer users as a whole will demand certain things from their operating system and the vendors will eventually get around to implementing those things. I think that on a long enough time line, eventually every OS will have appropriated all of the worthwhile features from every other OS.

    5. Re:Finally... by AndrewHowe · · Score: 3, Insightful

      I suggest you read the documentation for CancelIo before you make a bigger fool of yourself. How would you call CancelIo for a synchronous operation? You wouldn't regain control until the operation had finished, so there would be no need to cancel it anyway.

    6. Re:Finally... by drsmithy · · Score: 2, Insightful

      Everytime I read anything about Vista's new features, I hear myself saying "fucking finally" like half a dozen times.

      Funny, I think exactly the same thing almost every time I hear about the latest "innovation" in Linux or OS X.

    7. Re:Finally... by ultranova · · Score: 5, Informative

      How much praise was adorned on Linux when it got an O(1) scheduler? NT has had it for over a decade.

      Yes. A round robin scheduler, which runs every task for exactly 2 clock ticks except for foreground tasks which are run for 6 (or is this an XP improvement ?) - assuming there's no interrupts occurring during those ticks, of course - and not paying any attention to whether the task is IO- or CPU-bound. It performs absolutely shitty if you have anything heavy running in the background (say, POV-Ray rendering an image while you try to browse the Net). Praising that to be "O(1) scheduler" is about the same as calling the Goatse picture "art": sure, it may be technically true, but...

      What Linux was praised was getting a scheduler that handles 40 priority levels, real-time tasks, and multiple CPUs (500+, in some cases) while retaining both interactivity and high throughput, and doing all this in O(1) time. No version of Windows has ever gotten even close.

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

  4. Is this the same as... by tgatliff · · Score: 5, Funny

    Isnt this like entering the belly of the beast? I will save you some time in reading the article.

    Proper care for your Vista "Beast"
    1) Feed it plenty of CPU cycles. Preferrably multiple cores.
    2) Give it obsene amounts of memory. 2.5G preferable.
    3) This one seems to really enjoy Video Ram as wll, probably it tastes better. 256M advised.
    4) Keep feeding it a constant supply of disk space. Interestingly enough, this version seems to consume HD space simply with doing nothing.

    Thats the basics folks. Give your Vista beast what it needs and you should have a kind of good experience. At least for at least 6 months or so... Then you must slay the beast and re-install.. :-)

    1. Re:Is this the same as... by bwd234 · · Score: 3, Interesting

      Hell with all that...I'm sticking with my Windows 2000! Best M$ OS I've run yet. More stable than 95 or 98 and w/o all the wastefull eye candy of XP. If it does someday become totally obsolete, I guess I'll have to switch to Linux or whatever, but in the meantime it's 2k all the way!

    2. Re:Is this the same as... by mobby_6kl · · Score: 2, Informative

      Look carefully at the RAM usage in task manager. Most of the "used" memory is cache - it will be freed immediately when needed. I'm running Vista with a 1gb of ram (and a 2.6 Northwood P4), and real memory usage is around 300mb. I did turn off the Defender and Sidebar, but didn't go through any serious service cleanup, so I probably saved 20-30 megs here.

      The NVIDIA drivers suck, but UT2004 and Warhammer 40000 Dawn of War work fine, if slower than in xp/2003. The old Ghost Recon and R6 games work ok too. Didn't have much time to test any other games yet.

  5. Screenshot by Dirtside · · Score: 5, Funny

    They actually have a screenshot of what it looks like inside the Vista kernel.

    --
    "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
    1. Re:Screenshot by bl8n8r · · Score: 4, Funny

      whew.. for a minute there I thought that was a link to goatse

      --
      boycott slashdot February 10th - 17th check out: altSlashdot.org
    2. Re:Screenshot by typobox43 · · Score: 5, Funny

      Don't worry, there's plenty of gaping holes in the kernel too.

  6. Re:MMCSS by Tim+C · · Score: 4, Insightful

    Classic: multimedia apps take precedence over anti-virus.

    Yes, as it should. If the AV activity is a scheduled full system scan, then it can indeed wait those few tenths of seconds extra, as if you're already infected, they won't make any difference. If it's a real time scan on a file you're accessing, then it can definitely wait, as the file won't be opened/executed until the scan has completed anyway.

    So what exactly is the problem with giving a multimedia app a higher priority on the processor than your AV software? We're not talking about killing the AV soft, just lowering the priority; it's still running.

    they've merely reimplemented nice

    You've been able to set process priority through the Task Manager since at least NT4 (the earliest I remember it being available; it may have been in earlier versions too, I just don't remember seeing it personally).

  7. Whoa by Sloppy · · Score: 4, Interesting

    I think we've finally seen the very first actually interesting Slashdot story about Vista. About fucking time.

    --
    As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    1. Re:Whoa by mobby_6kl · · Score: 4, Funny

      What, you don't find outrageous articles based on misinformation and speculation, full of FUD and pure lies, written by people who know nothing about what an OS consists of besides window decorations and shiny progress bars, interesting?

      What are still you doing here?

    2. Re:Whoa by that+this+is+not+und · · Score: 2, Funny

      written by people who know nothing about what an OS consists of besides window decorations and shiny progress bars

      Are you kidding? You think that the design staff at Microsoft writes most of the Vista articles posted on Slashdot?

  8. Ideas borrowed from QNX. But bulkier by Animats · · Score: 3, Informative

    Much of this new stuff sounds like features of QNX. QNX has a "sporadic scheduler", for when you need things like 10ms of CPU every 100ms. QNX has had I/O cancellation for years. In QNX, you can set a timeout on any system call that blocks. If you set a 35ms timeout on a write, after 36 milliseconds, you'll have control back. Very useful in real-time systems where you're doing something less important, like logging, that should never take very long but, in some trouble condition, might. QNX has had prioritized I/O for years, too.

    It all works, too. I've done compiles on QNX while running a real time program on the same machine, without the real time program missing a deadline.

    Of course, in Vista, it's all more complicated.

  9. OS classes will always be open OS based by GodWasAnAlien · · Score: 5, Insightful

    Black box OS kernels like Windows can really never be disclosed. All you can really do is make some guesses or have an insider reveal some limited details.

    For this reason, OS classes in school will be based on Linux,BSD,Minux,or even ReactOS. With all of these, if want to really know how it works, there is the code.

    The secret-software-business is quite different that the shared discoveries of the scientific method that works well in education and science.

    Historically, the open ones will be the only ones that survive. In 50 years: You want to know how DOS worked in the 1980s? Well, no source is available. But freedos provides a good example of how it worked. You want to know how some random UNIX worked. Well the source to that specific one is not available, but BSD and Linux are a good examples of how it worked. You want to know how Windows-2000 worked? Well, no source code is available, but ReactOS provides a close approximation of how it worked.

    1. Re:OS classes will always be open OS based by dioscaido · · Score: 4, Informative

      True in theory, but Universities can license the source code of the windows kernel for academic purposes:

      http://www.microsoft.com/resources/sharedsource/Li censing/researchkernel.mspx

    2. Re:OS classes will always be open OS based by jadavis · · Score: 5, Insightful

      The secret-software-business is quite different that the shared discoveries of the scientific method that works well in education and science.

      Although you're right about closed software, computer science as a whole is actually much more open in many respects than some other scientific fields. In particular, the medical and biological science fields are quite closed-off. Even physics is somewhat closed-off, not by design, but because the equipment required to perform experiments is so expensive.

      Few computer science experiments take more than a couple thousand in capital investment. Also, if you have questions, you can often discuss your experiments, ideas, data, findings, etc. with an expert (or even industry leader) simply by signing up to a mailing list or going on IRC.

      --
      Social scientists are inspired by theories; scientists are humbled by facts.
    3. Re:OS classes will always be open OS based by that+this+is+not+und · · Score: 2, Interesting

      And anybody at said university who looks at said source code for any length of time becomes 'contaminated' and can't contribute to any similar non-Microsoft project ever again.

    4. Re:OS classes will always be open OS based by atsabig10fo · · Score: 3, Informative

      huh?

      "You may use any information in intangible form that you remember after accessing the software."
      http://www.microsoft.com/resources/sharedsource/li censingbasics/wrklicense.mspx/

    5. Re:OS classes will always be open OS based by hughk · · Score: 2, Interesting

      I disagree. I have not had the dubious pleasure of seeing Windows source code but I have worked with older monolithic closed source kernels such as OpenVMS where at various points I had access. With a good book about the kernel, finding your way around wasn't a major issue. Some items were complex but you could easily extract, for example, material for a course on say lock management, I/O or scheduling.

      A prof would want a commercial system to counterpoint something like Linux. However, if I was teaching, I would preder a system with less restrictions (i.e., with an OpenSource license) like Solaris, especially allowing students to easily tweak/replace subsystems.

      --
      See my journal, I write things there
    6. Re:OS classes will always be open OS based by nuzak · · Score: 2, Insightful

      > To understand it the prof then needs to look at it for, say, a year before he can give any reasonable lecture.

      Whereas professors are born knowing Linux, or magical documentation fairies just wave their little wands and give the professor knowledge about the subject.

      This might be a wild guess, but a professor teaching OS architecture might already know a thing or two about the OS architecture of the OS implemented by the source he's looking at.

      --
      Done with slashdot, done with nerds, getting a life.
    7. Re:OS classes will always be open OS based by blackpaw · · Score: 2, Insightful

      Bollocks, the public windows DDK by its nature reveals the kernel architecture pretty explicitly. Driver writers cannot operate without good documentation on the kernel.

  10. Inside the Windows Vista Kernel by jhines · · Score: 4, Funny

    The subject line made me think instantly of the old Adventure game,

    "you are in a maze of twisty passages all alike"

    sent a shiver up the spine.

    1. Re:Inside the Windows Vista Kernel by TempeTerra · · Score: 2, Funny

      You are inside the Windows Vista Kernel. It is dark. You are likely to be eaten by a grue.

      >?

      --
      .evom ton seod gis eht
  11. Re:MMCSS by timeOday · · Score: 5, Insightful

    You've been able to set process priority through the Task Manager since at least NT4
    Forget CPU sheduling priority, that is indeed old hat. What I saw in this article that really makes me jealous, as a Linux user, is I/O priority. Why have the systems people iterated for decades on CPU scheduling, and sorely neglected scheduling more precious resources like the network and disk? I can "nice" my system backup script, but what difference does it make when it's hogging the disk so much I can hardly load a new application? Process priorities should by default apply not only to the CPU, but to the disk and outbound network queues.
  12. Re:MMCSS by vadim_t · · Score: 4, Insightful

    That's complete nonsense.

    There are basically two options here:

    1. Antivirus hooks into the OS, and scans every program BEFORE it gets executed. In that case, the scanner's priority doesn't matter, it gets run before the program starts anyway.

    2. You run the antivirus scanning every file on disk, as a normal process. This would be what the priority adjustments affect, but doing things this way you can't really detect a new virus in real time. You can just find it during the scan, and the priority only determines how fast it will proceed when something else wants CPU time.

  13. Re:Bah! by Black+Acid · · Score: 5, Informative

    cfq/ionice is for reads only. "Due to the complex path writes take to get to the io scheduler there is no ionice support for writes yes so they are all treated equally." It'll happen...

  14. Re:ntoskrnl.exe by Anonymous Coward · · Score: 3, Informative

    hey dumass, its because windows nt used to be distributed on fat16 (not vfat) floppy disks and you could use dos to copy their contents over to a hard drive for installation. it had to be 8.3 then, and there's no need to change it now. you can rename ntoskrnl.exe to anything you want and boot off it with the /kernel= boot.ini option.

  15. Re:MMCSS by QuickFox · · Score: 4, Insightful

    may need more I/O than WMP11 but will not get any because it's tagged Low in advance. You have misunderstood resource scheduling. If WMP doesn't need the cycles, they will be available for the Low Priority processes. No matter how low their priority, they will get the cycles that WMP doesn't need. WMP will preempt them only if and when it needs the cycles.

    Unfortunately many programmers seem to misunderstand this. Usually you can give user-interface processes very high priority, even if they are far less important than some of the background processes. Very often user-interface processes consume only limited amounts of processor cycles. When this happens, no matter how high their priority, they will leave plenty of cycles for the other processes.

    It doesn't matter if a virus-scanning process gets delayed a few additional seconds, because there's no person waiting for it and getting impatient. It does matter if a web browser or text editor gets delayed, because there is a human waiting for them.
    --
    Terrorists can't threaten a country's freedom and democracy. Only lawmakers and voters can do that.
  16. Re:MMCSS by Tim+C · · Score: 4, Insightful

    Perhaps you need to learn how AV software works. I said "If it's a real time scan on a file you're accessing, then it can definitely wait, as the file won't be opened/executed until the scan has completed anyway" because any anti-virus software worth using scans every single file you attempt to access before that access takes place. As such, it doesn't matter what the virus claims to be, the AV software will have scanned it before it tells the OS.

    The general sequence of events is:

    1 user double-clicks a file
    2 the AV soft's real-time scanner is invoked to scan it
    3a the file is clean, access is granted
    3b the file is dirty, access is denied

    It doesn't matter how long step 2 takes, or what other apps get to use cycles while it's suspended - it will complete before either of steps 3a or 3b.

  17. Process startup changed significantly by Myria · · Score: 3, Interesting

    The article doesn't mention that process startup is now quite different from the other versions of Windows NT.

    In previous versions of NT, process creation was quite different from systems such as UNIX. The system call NtCreateProcess creates a "blank" process with nothing in it but ntdll.dll and the new .exe file mapped into memory. No stack is allocated, and no threads are created. In normal process creation, the parent process actually uses the debugger API calls to allocate memory for the stack into the new process's address space, copies the command line and environment into the new memory, and creates the initial thread pointing at kernel32!BaseProcessStartupThunk. It resumes the thread and off it goes. (NT has no concept of environment or command line at the kernel level.)

    This changed in Vista for one reason: DRM. Microsoft made it so that certain processes, namely wmplayer.exe and halo2.exe, cannot be a target of the debugger API calls for obvious reasons. It ignores privilege level in blocking the API. If the old method of starting processes were used, then the parent process could start wmplayer.exe with patches to steal the DRM keys or dump decrypted data to disk. Vista's kernel now does the entire initialization for these processes to close this hole.

    By the way, Microsoft needs to change that web page so that it doesn't select Spanish over English if you have Spanish listed as an acceptable language in your browser, even if English is higher in the list. This happens for both IE7 and FF2.

    Melissa

    --
    "Screw Sun, cross-platform will never work. Let's move on and steal the Java language." - Visual J++ Product Manager
  18. Making Symlinks in GUI? by physicsnick · · Score: 4, Insightful

    Having symlinks in the Vista kernel is nice and all, but Vista doesn't seem to offer a way to create these in Explorer. Who wants to break open a command line just to create a symlink?

    Correct me if I'm wrong, but don't people criticize Linux all the time of a lack of GUI utilities in comparison to Windows? Yet when I drag a file somewhere in KDE, I can just click on "Link Here" and poof, I've got a symlink. Why have I not heard a single complaint about the lack of a user-friendly way to do this in Vista?

    Furthermore, you need to have Administrator access (or use Administrator to give yourself the priviledge) to create a symlink, "because not all applications may handle symbolic links correctly". Doesn't this seem broken to anyone? Or at the very least, worrysome?

    1. Re:Making Symlinks in GUI? by curious.corn · · Score: 2, Informative

      Nope... hard links are just the sting-to-inode entry in a directory map (that's why they can't cross mount points, inode IDs are unique only within a single filesystem). A file normally has one hard link and is "deleted" when there's no hard link left that points to it.

      Incidentally, now that Linux has the concept of UUID in filesystem structures, one could extend hard links to prefix an inode ID with the owning volume UUID and make cross-mount hard links possible.

      e

      --
      Mi domando chi à il mandante di tutte le cazzate che faccio - Altan
  19. But it IS broken by dreamlax · · Score: 2, Insightful

    It's the fact that the backwards compatibility is still there. C:\PROGRA~1 etc is fucking ugly and confusing for the new user. They stole long file names from other OSs but implemented it poorly. They need to take the same route as OSX. Start from scratch (sort of) and forget backwards compatibility for once. Allow good implementation of a virtual machine for that sort of crap. You can't get rid of the burdens from your old OS if you allow backwards compatibilty. 8.3 filenames are just one of the burdens.

    1. Some Windows API functions having two versions, 16-bit and 32-bit versions, purely for compatibility.
    2. Windows API having two functions for the same string-based task, one for ASCII and one for UTF-16 (e.g. GetOpenFileNameA and GetOpenFileNameW). Now that they've done it this way, it will be very troublesome to support the industry standard UTF-8 and drop the deprecated UTF-16, as all strings passed to the UTF-16 version must be 16-bits per character.
    3. I'd think of more but I'm in a hurry . . .
    1. Re:But it IS broken by EXMSFT · · Score: 2, Informative

      He didn't say consumers. He said companies. VERY different. Enterprise companies DON'T want to throw away the 10 year old craptastic apps, the developers of which long since left the company. Ancient software is the key to Microsoft's stronghold. If everyone was willing to buy entirely new software (and throw away or completely rewrite what they have) just to run an entirely new OS with better features than the competition, the world would likely be running OS X already.

    2. Re:But it IS broken by beuges · · Score: 2, Insightful

      Yes, that is what consumers want. In fact, I'd guess that if Microsoft did indeed ignore backwards compatibility with each new version of Windows, you'd be one of the first people complaining about how much they suck because all your programs dont work and you have to go and buy new versions of all your games and software along with your new OS.

      Would you upgrade to a new version of Windows if it meant you having to repurchase or reinstall *all* your existing software? Consumers want the software they purchased to continue working on their computers once they've upgraded something, be it hardware, software, or the OS.

      It's an OS *upgrade*. That means it takes what it already had and adds to it. It is not a *new operating system*. This is why backwards compatibility is important.

      Also, you keep on talking about this "16-bit API" as if you know much about it. The functions still exist with their 16bit names, but apart from the ones that specifically remain 16bit due to their very nature, all of the "legacy 16bit api" is either fully 32bit or just maps as an alias to the 32bit equivalent. Which part of the "16bit API" offends you so much? Just because the OS provides backwards compatibility with 16bit programs doesnt mean that your system is suffering in any way due to the presence of that compatibility. The 16bit subsystem only kicks in when you launch a 16bit process. If a 16bit application works 100% without modification, why should the application developers rewrite it just to make you happy?

  20. Re:ntoskrnl.exe by spectecjr · · Score: 2, Informative

    That's because the ISO file system used on CDs limits you to 8.3 file names if you want to read them on all BIOSes.

    --
    Coming soon - pyrogyra
  21. Not quite... by supersat · · Score: 3, Informative

    Err... Not quite. Not all of the SysInternals tools were migrated, and NONE of the source code was. Microsoft's hiding behind some pretty lame excuses (e.g. "They're using undocumented APIs!" or "Hackers are using it to make spyware!") for not distributing the source code.

    The Winternals Administrator's Pak is also ">being discontinued, and have its functionality available only to those with Software Assurance agreements.

  22. Is it true? by BillGatesLoveChild · · Score: 3, Funny

    Is it true that every line in the source contains comments like this?

    ; Hah! Take that user!
    ; Oh nice try but we thought of that!
    ; Clearly they are trying to steal this.
    ; Thief! Thief!
    ; MP3s have no DRM. Refuse to play.
    ; Block association away from Windows Media Player
    ; SONY rootkit plugs in here
    ; Powered up. Now lets get today's authorization.

  23. Unfair CPU scheduling by gillbates · · Score: 2, Interesting

    Ok, I'm not trying to troll, but the latest CPU scheduling algorithm is just yet another example of how when it comes to Windows, the design is done more by the marketing department than by the engineers. At least we hope the engineers would have raised objections!

    I understand their CPU cycle counting is intended to improve fairness between applications, but the proposed scheme will have just the opposite effect. Consider, for example, that interrupts aren't counted against a process' cpu usage. All well and good in theory, but the practical result is that a process which is I/O intensive - that is, one which causes interrupts to occur - will actually run much longer than it would otherwise. So, the problem of one I/O intensive process locking out all of the other applications will only get worse in Vista.

    And the interesting thing is that this will actually give a subtle priority boost to multimedia applications, without them having to raise their priority level. IOTW, your multimedia app gets realtime priority whether you asked for it or not.

    Well intentioned, yes. But also naive.

    --
    The society for a thought-free internet welcomes you.
  24. Video of MS kernel developer talking about this by Myria · · Score: 3, Interesting

    Click here. He talks about a lot of things, including these "protected processes", and even says that the purpose is for DRM.

    Melissa

    --
    "Screw Sun, cross-platform will never work. Let's move on and steal the Java language." - Visual J++ Product Manager
  25. The Tagging system for slashdot needs moderation by Froqen · · Score: 2, Informative

    I know that badvista.org has a campaign to mark products with DRM and defectivebydesign, but nothing in this story has anything to do with DRM; having these tags on the article is less then useful. Maybe the tags need the same type of moderation system that the comments get.

  26. Re:One "defect" is still there. by bkoehler · · Score: 2, Informative

    tasklist -svc (from cmd) will show you what services are contained within a svchost.exe PID.