Skip to content

Commit

Permalink
Update overlay
Browse files Browse the repository at this point in the history
* 使用官方的,已经包含 通讯共享
  • Loading branch information
YuKongA committed Apr 12, 2024
1 parent eec3baf commit 1c716f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified houji_files/overlay.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Start_Time() {
End_Time() {
local End_s End_ns time_s time_ns
End_s=$(date +%s)
End_ns=10#$(date +%N)
time_s=$((End_s - Start_s))
time_ns=$((End_ns - Start_ns))
End_ns=$(date +%N)
time_s=$((10#$End_s - 10#$Start_s))
time_ns=$((10#$End_ns - 10#$Start_ns))
if ((time_ns < 0)); then
((time_s--))
((time_ns += 1000000000))
Expand Down

0 comments on commit 1c716f2

Please sign in to comment.