[PR #91] [CLOSED] Time64 syscall #169

Open
opened 2026-01-31 21:30:05 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/91
Author: @SidManning
Created: 4/28/2020
Status: Closed

Base: masterHead: time64-syscall


📝 Commits (10+)

  • 72109cc Add support for Hexagon target with linux-user
  • fdcd183 Add support for bit-reversed and circular addressing modes
  • 3243a98 Fix the following bugs from "make check-tcg"
  • 40c911c Move files to imported directory to indicate origin is arch lib
  • c0c2605 Move code to imported directory
  • bc2c7cf Move more files to imported directory
  • 4bc94c5 Respond to first round of review comments
  • 98cb9c5 Fix formatting and build dependencies
  • 37de636 Get rid of DEBUG_HEX, replace with improved HEX_DEBUG and HEX_DEBUG_LOG
  • ca480d7 Cleanup based on community review

📊 Changes

96 files changed (+36605 additions, -2 deletions)

View changed files

📝 configure (+9 -0)
default-configs/hexagon-linux-user.mak (+1 -0)
📝 disas/Makefile.objs (+1 -0)
disas/hexagon.c (+62 -0)
📝 include/disas/dis-asm.h (+1 -0)
📝 include/elf.h (+2 -0)
📝 linux-user/elfload.c (+15 -0)
linux-user/hexagon/cpu_loop.c (+172 -0)
linux-user/hexagon/signal.c (+276 -0)
linux-user/hexagon/sockbits.h (+18 -0)
linux-user/hexagon/syscall_nr.h (+343 -0)
linux-user/hexagon/target_cpu.h (+44 -0)
linux-user/hexagon/target_elf.h (+38 -0)
linux-user/hexagon/target_fcntl.h (+18 -0)
linux-user/hexagon/target_signal.h (+34 -0)
linux-user/hexagon/target_structs.h (+46 -0)
linux-user/hexagon/target_syscall.h (+32 -0)
linux-user/hexagon/termbits.h (+18 -0)
📝 linux-user/syscall.c (+2 -0)
📝 linux-user/syscall_defs.h (+33 -0)

...and 76 more files

📄 Description

changes some syscalls to use 64bit time.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/91 **Author:** [@SidManning](https://github.com/SidManning) **Created:** 4/28/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `time64-syscall` --- ### 📝 Commits (10+) - [`72109cc`](https://github.com/qemu/qemu/commit/72109ccf86f4c8e4bbdd7beea590bb651b4c206e) Add support for Hexagon target with linux-user - [`fdcd183`](https://github.com/qemu/qemu/commit/fdcd183e110ef9c58c438011dcbfff2a69aa1715) Add support for bit-reversed and circular addressing modes - [`3243a98`](https://github.com/qemu/qemu/commit/3243a983468ef78a39454e028245a1e05d4f6bf4) Fix the following bugs from "make check-tcg" - [`40c911c`](https://github.com/qemu/qemu/commit/40c911c9c40a8e94a2eda59d30d188e769c1ebd7) Move files to imported directory to indicate origin is arch lib - [`c0c2605`](https://github.com/qemu/qemu/commit/c0c2605711ee6e4ebb98138999c78470670d7b23) Move code to imported directory - [`bc2c7cf`](https://github.com/qemu/qemu/commit/bc2c7cfc62299f899b52714492dd4492bb465c69) Move more files to imported directory - [`4bc94c5`](https://github.com/qemu/qemu/commit/4bc94c51ce448ac98732ebf32a2573d4fd388f08) Respond to first round of review comments - [`98cb9c5`](https://github.com/qemu/qemu/commit/98cb9c596dc43e1ddb0a32385647043e6ef56a1e) Fix formatting and build dependencies - [`37de636`](https://github.com/qemu/qemu/commit/37de636fdef5c4e0dfb37f69e187833d1064ec1d) Get rid of DEBUG_HEX, replace with improved HEX_DEBUG and HEX_DEBUG_LOG - [`ca480d7`](https://github.com/qemu/qemu/commit/ca480d7405f14971dadea2dc3eb08c0f78ea23ee) Cleanup based on community review ### 📊 Changes **96 files changed** (+36605 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `configure` (+9 -0) ➕ `default-configs/hexagon-linux-user.mak` (+1 -0) 📝 `disas/Makefile.objs` (+1 -0) ➕ `disas/hexagon.c` (+62 -0) 📝 `include/disas/dis-asm.h` (+1 -0) 📝 `include/elf.h` (+2 -0) 📝 `linux-user/elfload.c` (+15 -0) ➕ `linux-user/hexagon/cpu_loop.c` (+172 -0) ➕ `linux-user/hexagon/signal.c` (+276 -0) ➕ `linux-user/hexagon/sockbits.h` (+18 -0) ➕ `linux-user/hexagon/syscall_nr.h` (+343 -0) ➕ `linux-user/hexagon/target_cpu.h` (+44 -0) ➕ `linux-user/hexagon/target_elf.h` (+38 -0) ➕ `linux-user/hexagon/target_fcntl.h` (+18 -0) ➕ `linux-user/hexagon/target_signal.h` (+34 -0) ➕ `linux-user/hexagon/target_structs.h` (+46 -0) ➕ `linux-user/hexagon/target_syscall.h` (+32 -0) ➕ `linux-user/hexagon/termbits.h` (+18 -0) 📝 `linux-user/syscall.c` (+2 -0) 📝 `linux-user/syscall_defs.h` (+33 -0) _...and 76 more files_ </details> ### 📄 Description changes some syscalls to use 64bit time. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:05 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#169