You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ag...@apache.org on 2022/01/06 08:42:55 UTC

[incubator-nuttx] branch master updated: arch/sim: Rename up_vfork[32|64].S to up_vfork_x[32|64].S

This is an automated email from the ASF dual-hosted git repository.

aguettouche pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 3982296  arch/sim: Rename up_vfork[32|64].S to up_vfork_x[32|64].S
3982296 is described below

commit 3982296294e64f5cb2718ddd78440f2717ecc3ae
Author: Xiang Xiao <xi...@xiaomi.com>
AuthorDate: Thu Jan 6 01:57:53 2022 +0800

    arch/sim: Rename up_vfork[32|64].S to up_vfork_x[32|64].S
    
    to align with up_vfork_arm.S naming style
    
    Signed-off-by: Xiang Xiao <xi...@xiaomi.com>
---
 arch/sim/src/Makefile                             | 6 +++---
 arch/sim/src/sim/{up_vfork32.S => up_vfork_x32.S} | 2 +-
 arch/sim/src/sim/{up_vfork64.S => up_vfork_x64.S} | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/sim/src/Makefile b/arch/sim/src/Makefile
index 829afc7..7d44ccc 100644
--- a/arch/sim/src/Makefile
+++ b/arch/sim/src/Makefile
@@ -41,12 +41,12 @@ REQUIREDOBJS = $(LINKOBJS)
 
 ifeq ($(CONFIG_HOST_X86_64),y)
 ifeq ($(CONFIG_SIM_M32),y)
-  ASRCS += up_vfork32.S
+  ASRCS += up_vfork_x32.S
 else
-  ASRCS += up_vfork64.S
+  ASRCS += up_vfork_x64.S
 endif
 else ifeq ($(CONFIG_HOST_X86),y)
-  ASRCS += up_vfork32.S
+  ASRCS += up_vfork_x32.S
 else ifeq ($(CONFIG_HOST_ARM),y)
   ASRCS += up_vfork_arm.S
 endif
diff --git a/arch/sim/src/sim/up_vfork32.S b/arch/sim/src/sim/up_vfork_x32.S
similarity index 99%
rename from arch/sim/src/sim/up_vfork32.S
rename to arch/sim/src/sim/up_vfork_x32.S
index 223a023..8262dc0 100644
--- a/arch/sim/src/sim/up_vfork32.S
+++ b/arch/sim/src/sim/up_vfork_x32.S
@@ -1,5 +1,5 @@
 /************************************************************************************
- * arch/sim/src/sim/up_vfork32.S
+ * arch/sim/src/sim/up_vfork_x32.S
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
diff --git a/arch/sim/src/sim/up_vfork64.S b/arch/sim/src/sim/up_vfork_x64.S
similarity index 99%
rename from arch/sim/src/sim/up_vfork64.S
rename to arch/sim/src/sim/up_vfork_x64.S
index 48da703..74aa2cf 100644
--- a/arch/sim/src/sim/up_vfork64.S
+++ b/arch/sim/src/sim/up_vfork_x64.S
@@ -1,5 +1,5 @@
 /************************************************************************************
- * arch/sim/src/sim/up_vfork64.S
+ * arch/sim/src/sim/up_vfork_x64.S
  *
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with