Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cm-projects
RIOT
Commits
6b526f05
Commit
6b526f05
authored
7 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
sys/xtimer: remove duplicat _xtimer_set declaration
parent
87e3f10e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sys/include/xtimer/implementation.h
+1
-2
1 addition, 2 deletions
sys/include/xtimer/implementation.h
with
1 addition
and
2 deletions
sys/include/xtimer/implementation.h
+
1
−
2
View file @
6b526f05
...
@@ -63,14 +63,13 @@ static inline uint32_t _xtimer_lltimer_mask(uint32_t val)
...
@@ -63,14 +63,13 @@ static inline uint32_t _xtimer_lltimer_mask(uint32_t val)
*/
*/
uint64_t
_xtimer_now64
(
void
);
uint64_t
_xtimer_now64
(
void
);
int
_xtimer_set_absolute
(
xtimer_t
*
timer
,
uint32_t
target
);
int
_xtimer_set_absolute
(
xtimer_t
*
timer
,
uint32_t
target
);
void
_xtimer_set64
(
xtimer_t
*
timer
,
uint32_t
offset
,
uint32_t
long_offset
);
void
_xtimer_set
(
xtimer_t
*
timer
,
uint32_t
offset
);
void
_xtimer_set
(
xtimer_t
*
timer
,
uint32_t
offset
);
void
_xtimer_set64
(
xtimer_t
*
timer
,
uint32_t
offset
,
uint32_t
long_offset
);
void
_xtimer_periodic_wakeup
(
uint32_t
*
last_wakeup
,
uint32_t
period
);
void
_xtimer_periodic_wakeup
(
uint32_t
*
last_wakeup
,
uint32_t
period
);
void
_xtimer_set_msg
(
xtimer_t
*
timer
,
uint32_t
offset
,
msg_t
*
msg
,
kernel_pid_t
target_pid
);
void
_xtimer_set_msg
(
xtimer_t
*
timer
,
uint32_t
offset
,
msg_t
*
msg
,
kernel_pid_t
target_pid
);
void
_xtimer_set_msg64
(
xtimer_t
*
timer
,
uint64_t
offset
,
msg_t
*
msg
,
kernel_pid_t
target_pid
);
void
_xtimer_set_msg64
(
xtimer_t
*
timer
,
uint64_t
offset
,
msg_t
*
msg
,
kernel_pid_t
target_pid
);
void
_xtimer_set_wakeup
(
xtimer_t
*
timer
,
uint32_t
offset
,
kernel_pid_t
pid
);
void
_xtimer_set_wakeup
(
xtimer_t
*
timer
,
uint32_t
offset
,
kernel_pid_t
pid
);
void
_xtimer_set_wakeup64
(
xtimer_t
*
timer
,
uint64_t
offset
,
kernel_pid_t
pid
);
void
_xtimer_set_wakeup64
(
xtimer_t
*
timer
,
uint64_t
offset
,
kernel_pid_t
pid
);
void
_xtimer_set
(
xtimer_t
*
timer
,
uint32_t
offset
);
int
_xtimer_msg_receive_timeout
(
msg_t
*
msg
,
uint32_t
ticks
);
int
_xtimer_msg_receive_timeout
(
msg_t
*
msg
,
uint32_t
ticks
);
int
_xtimer_msg_receive_timeout64
(
msg_t
*
msg
,
uint64_t
ticks
);
int
_xtimer_msg_receive_timeout64
(
msg_t
*
msg
,
uint64_t
ticks
);
...
...
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