Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • D dynamorio
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,467
    • Issues 1,467
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 44
    • Merge requests 44
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • DynamoRIO
  • dynamorio
  • Merge requests
  • !5158

i#5131 new linux syscalls: handle pselect6_time64

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Abhinav Anil Sharma requested to merge i5131-pselect6-time64 into master Oct 13, 2021
  • Overview 4
  • Commits 4
  • Pipelines 0
  • Changes 3

Adds handling for pselect6_time64 same as the existing handling for pselect6. This is still conditionally compiled based on whether SYS_pselect6_time64 is defined, because the *_time64 syscalls are defined only on 32-bit.

Adds a test for pselect6_time64 with non-null sigmask that fails without this. The one with null sigmask doesn't really need special handling but added it anyway.

Adds a test for ppoll_time64 with non-null sigmask that fails without the ppoll_time64 handling. The existing one for ppoll_time64 was with null sigmask. The existing non-null sigmask test for ppoll also does fail without the ppoll_time64 handling, but good to have another one specific to ppoll_time64.

Makes some readability improvements in the test source: removes some empty lines that weren't helping, and rearranges some code to bring declaration and use closer for some variables.

Issue: #5131 (closed)

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: i5131-pselect6-time64