Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
f4grx
NuttX RTOS
Commits
f645c10f
Commit
f645c10f
authored
10 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Plain Diff
Resolve merge conflict
parents
6ac0e906
447ec3ca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+3
-1
3 additions, 1 deletion
ChangeLog
arch/arm/src/armv7-a/arm_memcpy.S
+15
-0
15 additions, 0 deletions
arch/arm/src/armv7-a/arm_memcpy.S
arch/arm/src/armv7-m/up_memcpy.S
+15
-0
15 additions, 0 deletions
arch/arm/src/armv7-m/up_memcpy.S
with
33 additions
and
1 deletion
ChangeLog
+
3
−
1
View file @
f645c10f
...
...
@@ -9556,6 +9556,8 @@
interrupts are automatically restored when the wait happens. But
with CONFIG_NET_NOINTS=y, the wait blocks with the network locked --
bad style and also can lead to a deadlock condition (2015-01-28).
* arch/arm/src/armv7-a/arm_memcpy.S and arch/arm/src/armv7-m/up_memcpy.S:
ARM assembly language memcpy.S's were not returning a value in R0 they
are required to do. From David Sidrane (2015-01-29).
* net/local: Extend Unix domain socket support to include support
for datagram Unix domain sockets (2015-01-29).
This diff is collapsed.
Click to expand it.
arch/arm/src/armv7-a/arm_memcpy.S
+
15
−
0
View file @
f645c10f
...
...
@@ -143,11 +143,26 @@ MEM_LongCopyTable:
*
Input
Parameters
:
*
r0
=
destination
,
r1
=
source
,
r2
=
length
*
*
Returned
Value
:
*
r0
=
destination
r1
-
r3
burned
*
************************************************************************************/
.
align
4
.
thumb_func
memcpy
:
push
{
r14
}
push
{
r0
}
bl
_do_memcpy
pop
{
r0
}
pop
{
pc
}
.
align
4
.
thumb_func
_do_memcpy
:
push
{
r14
}
/
*
This
allows
the
inner
workings
to
"assume"
a
minimum
amount
of
bytes
*/
/
*
Quickly
check
for
very
short
copies
*/
...
...
This diff is collapsed.
Click to expand it.
arch/arm/src/armv7-m/up_memcpy.S
+
15
−
0
View file @
f645c10f
...
...
@@ -142,11 +142,26 @@ MEM_LongCopyTable:
*
Input
Parameters
:
*
r0
=
destination
,
r1
=
source
,
r2
=
length
*
*
Returned
Value
:
*
r0
=
destination
r1
-
r3
burned
*
************************************************************************************/
.
align
4
.
thumb_func
memcpy
:
push
{
r14
}
push
{
r0
}
bl
_do_memcpy
pop
{
r0
}
pop
{
pc
}
.
align
4
.
thumb_func
_do_memcpy
:
push
{
r14
}
/
*
This
allows
the
inner
workings
to
"assume"
a
minimum
amount
of
bytes
*/
/
*
Quickly
check
for
very
short
copies
*/
...
...
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