# HG changeset patch # User Stefan Vogel # Date 1263987667 -3600 # Node ID 7d8aad540a9be9f34f425a4eea3edb3d00c5f396 # Parent d3c1fea8f18da534eee815de637ccd015b2f75a0 changed comment: #getNumberOfProcessors diff -r d3c1fea8f18d -r 7d8aad540a9b Win32OperatingSystem.st --- a/Win32OperatingSystem.st Wed Jan 20 12:37:23 2010 +0100 +++ b/Win32OperatingSystem.st Wed Jan 20 12:41:07 2010 +0100 @@ -7647,16 +7647,17 @@ ! getNumberOfProcessors + "answer the number of physical processors in the system" %{ - SYSTEM_INFO sInfo; - GetSystemInfo(&sInfo); - - return __mkSmallInteger(sInfo.dwNumberOfProcessors); + SYSTEM_INFO sInfo; + GetSystemInfo(&sInfo); + + return __mkSmallInteger(sInfo.dwNumberOfProcessors); %}. " - self getNumberOfProcessors + self getNumberOfProcessors " ! @@ -16416,11 +16417,11 @@ !Win32OperatingSystem class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.385 2010-01-15 10:06:08 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.386 2010-01-20 11:41:07 stefan Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.385 2010-01-15 10:06:08 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.386 2010-01-20 11:41:07 stefan Exp $' ! ! Win32OperatingSystem initialize!