Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
82c23c58
Commit
82c23c58
authored
Jun 05, 2012
by
Chris Young
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assume this is irrelevant for now
parent
d0517805
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/unix/map.c
+6
-2
No files found.
src/unix/map.c
View file @
82c23c58
#include "map.h"
#ifndef __amigaos4__
#include <sys/mman.h>
#endif
#include <errno.h>
int
git__mmap
(
git_map
*
out
,
size_t
len
,
int
prot
,
int
flags
,
int
fd
,
git_off_t
offset
)
{
#ifndef __amigaos4__
int
mprot
=
0
;
int
mflag
=
0
;
...
...
@@ -42,19 +45,20 @@ int git__mmap(git_map *out, size_t len, int prot, int flags, int fd, git_off_t o
if
(
!
out
->
data
||
out
->
data
==
MAP_FAILED
)
return
git__throw
(
GIT_EOSERR
,
"Failed to mmap. Could not write data"
);
out
->
len
=
len
;
#endif
return
GIT_SUCCESS
;
}
int
git__munmap
(
git_map
*
map
)
{
#ifndef __amigaos4__
assert
(
map
!=
NULL
);
if
(
!
map
)
return
git__throw
(
GIT_ERROR
,
"Failed to munmap. Map does not exist"
);
munmap
(
map
->
data
,
map
->
len
);
#endif
return
GIT_SUCCESS
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment