Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
a0e683ef
Commit
a0e683ef
authored
7 years ago
by
Vojtech Kral
Browse files
Options
Downloads
Patches
Plain Diff
Fix kqueue filter consts type on NetBSD
parent
0a528191
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/unix/bsd/netbsdlike/netbsd/mod.rs
+7
-7
7 additions, 7 deletions
src/unix/bsd/netbsdlike/netbsd/mod.rs
with
7 additions
and
7 deletions
src/unix/bsd/netbsdlike/netbsd/mod.rs
+
7
−
7
View file @
a0e683ef
...
...
@@ -649,13 +649,13 @@ pub const PTHREAD_MUTEX_ERRORCHECK: ::c_int = 1;
pub
const
PTHREAD_MUTEX_RECURSIVE
:
::
c_int
=
2
;
pub
const
PTHREAD_MUTEX_DEFAULT
:
::
c_int
=
PTHREAD_MUTEX_NORMAL
;
pub
const
EVFILT_AIO
:
::
int32_t
=
2
;
pub
const
EVFILT_PROC
:
::
int32_t
=
4
;
pub
const
EVFILT_READ
:
::
int32_t
=
0
;
pub
const
EVFILT_SIGNAL
:
::
int32_t
=
5
;
pub
const
EVFILT_TIMER
:
::
int32_t
=
6
;
pub
const
EVFILT_VNODE
:
::
int32_t
=
3
;
pub
const
EVFILT_WRITE
:
::
int32_t
=
1
;
pub
const
EVFILT_AIO
:
::
u
int32_t
=
2
;
pub
const
EVFILT_PROC
:
::
u
int32_t
=
4
;
pub
const
EVFILT_READ
:
::
u
int32_t
=
0
;
pub
const
EVFILT_SIGNAL
:
::
u
int32_t
=
5
;
pub
const
EVFILT_TIMER
:
::
u
int32_t
=
6
;
pub
const
EVFILT_VNODE
:
::
u
int32_t
=
3
;
pub
const
EVFILT_WRITE
:
::
u
int32_t
=
1
;
pub
const
EV_ADD
:
::
uint32_t
=
0x1
;
pub
const
EV_DELETE
:
::
uint32_t
=
0x2
;
...
...
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