Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
wendelin.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
wendelin.core
Commits
7001a495
Commit
7001a495
authored
Jul 11, 2019
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix typos
parent
49fd66ad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/wendelin/bigfile/ram.h
include/wendelin/bigfile/ram.h
+1
-1
include/wendelin/bug.h
include/wendelin/bug.h
+2
-2
No files found.
include/wendelin/bigfile/ram.h
View file @
7001a495
...
...
@@ -30,7 +30,7 @@
* - need to "unload" non-dirty pages to free place for requested new data (reclaim)
*
* - need to be able to map a page into several places (to support
* overlapping-in-file mappings done not nec
c
essarily adjacent-in-time to
* overlapping-in-file mappings done not necessarily adjacent-in-time to
* each other - there is no guarantee mapping them adjacent in address space
* is possible)
*
...
...
include/wendelin/bug.h
View file @
7001a495
...
...
@@ -2,7 +2,7 @@
#define _WENDELIN_BUG_H_
/* Wendelin. Utilities for handling assertions and bugs
* Copyright (C) 2014-201
5
Nexedi SA and Contributors.
* Copyright (C) 2014-201
9
Nexedi SA and Contributors.
* Kirill Smelkov <kirr@nexedi.com>
*
* This program is free software: you can Use, Study, Modify and Redistribute
...
...
@@ -46,7 +46,7 @@
__bug_errno(__FILE__, __LINE__, __func__); \
} while (0)
/* like assert(expr) but works indepenently of NDEBUG */
/* like assert(expr) but works indepen
d
ently of NDEBUG */
// TODO unlikely
#define ASSERT(expr) do { \
if (!(expr)) \
...
...
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