Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Utils
KWSys
Commits
62a3cbc2
Commit
62a3cbc2
authored
19 years ago
by
Mathieu Malaterre
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Fix problem on MacOSX, by disabling part of the test.
parent
aef68e64
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DynamicLoader.cxx
+7
-6
7 additions, 6 deletions
DynamicLoader.cxx
testDynamicLoader.cxx
+2
-0
2 additions, 0 deletions
testDynamicLoader.cxx
with
9 additions
and
6 deletions
DynamicLoader.cxx
+
7
−
6
View file @
62a3cbc2
...
...
@@ -160,20 +160,21 @@ LibHandle DynamicLoader::OpenLibrary(const char* libname )
{
return
0
;
}
return
NSLinkModule
(
image
,
libname
,
NSLINKMODULE_OPTION_PRIVATE
|
NSLINKMODULE_OPTION_BINDNOW
);
NSModule
handle
=
NSLinkModule
(
image
,
libname
,
NSLINKMODULE_OPTION_BINDNOW
|
NSLINKMODULE_OPTION_RETURN_ON_ERROR
);
NSDestroyObjectFileImage
(
image
);
return
handle
;
}
//----------------------------------------------------------------------------
int
DynamicLoader
::
CloseLibrary
(
LibHandle
lib
)
{
// Initially this function was written using NSUNLINKMODULE_OPTION_NONE, but when
// the code is compiled with coverage on, one cannot close the library properly
// so instead of not unloading the library. We use a special option:
// NSUNLINKMODULE_OPTION_KEEP_MEMORY_MAPPED
// With this option the memory for the module is not deallocated
// allowing pointers into the module to still be valid.
bool
success
=
NSUnLinkModule
(
lib
,
NSUNLINKMODULE_OPTION_KEEP_MEMORY_MAPPED
);
// You should use this option instead if your code experience some problems
// reported against Panther 10.3.9 (fixed in Tiger 10.4.2 and up)
bool
success
=
NSUnLinkModule
(
lib
,
NSUNLINKMODULE_OPTION_NONE
);
return
success
;
}
...
...
This diff is collapsed.
Click to expand it.
testDynamicLoader.cxx
+
2
−
0
View file @
62a3cbc2
...
...
@@ -68,6 +68,7 @@ int TestDynamicLoader(const char* libname, const char* symbol, int r1, int r2, i
<<
kwsys
::
DynamicLoader
::
LastError
()
<<
kwsys_ios
::
endl
;
return
1
;
}
#ifndef __APPLE__
int
s
=
kwsys
::
DynamicLoader
::
CloseLibrary
(
l
);
if
(
(
r3
&&
!
s
)
||
(
!
r3
&&
s
)
)
{
...
...
@@ -75,6 +76,7 @@ int TestDynamicLoader(const char* libname, const char* symbol, int r1, int r2, i
<<
kwsys
::
DynamicLoader
::
LastError
()
<<
kwsys_ios
::
endl
;
return
1
;
}
#endif
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment