Skip to content

Commit f5fd665

Browse files
committed
CogVM source as per VMMaker.oscog-topa.2418 (well, for the plgin at least).
An include went missing, put it back where it belongs. Also fix a typo in a comment.
1 parent a558164 commit f5fd665

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

platforms/win32/vm/sqWin32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
* getSystemAttribute: 1001 ("platform name") to answer 'Win32' on Windows.
124124
* Yes, this is regrettable. No, it's not easy to fix without breaking existing
125125
* images :-(. The NT vs CE distinction isn't particularly meaningful either.
126-
* Further (see sqWin32Window.c) parameter 1005 (the windoing sytsem name) also
126+
* Further (see sqWin32Window.c) parameter 1005 (the windoing system name) also
127127
* answers Win32. Perhaps this could be changed to "Windows", because at least
128128
* in a base Squeak 5.1 image as of mid 2017 there is no use of windowSystemName
129129
* that depends on its result being 'Win32' (see e.g. HandMorph class>>

src/plugins/VMProfileLinuxSupportPlugin/VMProfileLinuxSupportPlugin.c

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/* Automatically generated by
2-
VMPluginCodeGenerator VMMaker.oscog-eem.2394 uuid: 61ae96f8-fd2b-4208-87ff-cf1cd6b3f859
2+
VMPluginCodeGenerator VMMaker.oscog-topa.2418 uuid: 6a3317fd-ca50-498f-8879-332f920fe363
33
from
4-
VMProfileLinuxSupportPlugin VMMaker.oscog-eem.2394 uuid: 61ae96f8-fd2b-4208-87ff-cf1cd6b3f859
4+
VMProfileLinuxSupportPlugin VMMaker.oscog-topa.2418 uuid: 6a3317fd-ca50-498f-8879-332f920fe363
55
*/
6-
static char __buildInfo[] = "VMProfileLinuxSupportPlugin VMMaker.oscog-eem.2394 uuid: 61ae96f8-fd2b-4208-87ff-cf1cd6b3f859 " __DATE__ ;
6+
static char __buildInfo[] = "VMProfileLinuxSupportPlugin VMMaker.oscog-topa.2418 uuid: 6a3317fd-ca50-498f-8879-332f920fe363 " __DATE__ ;
77

88

99

@@ -17,6 +17,7 @@ static char __buildInfo[] = "VMProfileLinuxSupportPlugin VMMaker.oscog-eem.2394
1717
#if defined(HAVE_DLFCN_H)
1818
# include <dlfcn.h>
1919
#endif
20+
#include <link.h>
2021

2122
/* Default EXPORT macro that does nothing (see comment in sq.h): */
2223
#define EXPORT(returnType) returnType
@@ -101,9 +102,9 @@ extern
101102
struct VirtualMachine* interpreterProxy;
102103
static const char *moduleName =
103104
#ifdef SQUEAK_BUILTIN_PLUGIN
104-
"VMProfileLinuxSupportPlugin VMMaker.oscog-eem.2394 (i)"
105+
"VMProfileLinuxSupportPlugin VMMaker.oscog-topa.2418 (i)"
105106
#else
106-
"VMProfileLinuxSupportPlugin VMMaker.oscog-eem.2394 (e)"
107+
"VMProfileLinuxSupportPlugin VMMaker.oscog-topa.2418 (e)"
107108
#endif
108109
;
109110
static sqInt numModules;

0 commit comments

Comments
 (0)