summaryrefslogtreecommitdiff
path: root/pr/src/md/os2
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-05-11 23:54:04 +0000
committerwtc%netscape.com <devnull@localhost>2000-05-11 23:54:04 +0000
commit61ce2d5bb2a4bc43ab655366690cad302d1195f7 (patch)
tree7c5e62d540f39fac47ca9ffb7f9bdd43d8f5eed4 /pr/src/md/os2
parentbdd248d26b0eda034e358128002e81885b47d463 (diff)
downloadnspr-hg-61ce2d5bb2a4bc43ab655366690cad302d1195f7.tar.gz
Bugzilla bug #38996: added new function PR_GetMemMapAlignment().
Modified files: prio.h, _beos.h, _macos.h, _os2.h, _unixos.h, _win16.h, _win95.h, _winnt.h, primpl.h, prmmap.c, bmmap.c, macio.c, os2misc.c, ntmisc.c, w16fmem.c
Diffstat (limited to 'pr/src/md/os2')
-rw-r--r--pr/src/md/os2/os2misc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/pr/src/md/os2/os2misc.c b/pr/src/md/os2/os2misc.c
index 27277e68..fc1ada88 100644
--- a/pr/src/md/os2/os2misc.c
+++ b/pr/src/md/os2/os2misc.c
@@ -495,6 +495,13 @@ PRStatus _MD_CreateFileMap(PRFileMap *fmap, PRInt64 size)
return PR_FAILURE;
}
+PRInt32 _MD_GetMemMapAlignment(void)
+{
+ PR_ASSERT(!"Not implemented");
+ PR_SetError(PR_NOT_IMPLEMENTED_ERROR, 0);
+ return -1;
+}
+
void * _MD_MemMap(
PRFileMap *fmap,
PROffset64 offset,