Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jobs: change p_job variable type from short to int #763

Merged
merged 5 commits into from
Jul 13, 2024

Commits on Jul 10, 2024

  1. Configuration menu
    Copy the full SHA
    dd29ef8 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. jobs: change p_job variable type from short to int

    This change addresses an issue where ksh hangs when the number of jobs exceeds `2^15 - 1` (32767), which is the maximum value for a `short`.
    vmihalko committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    3822f2c View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2024

  1. tweaks: silence gcc warning on mamake; make tests/arith.sh env safe

    src/cmd/INIT/mamake.c:
    - Option -V: Silence an annoying gcc warning by checking the return
      value of write(2). It's kind of pointless just for printing the
      version, but on gcc, (void)write will not suppress the warning.
      https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66425
    
    src/cmd/ksh93/tests/arith.sh:
    - The Gentoo ebuild explicitly unsets A, which is apparently
      exported in their environment, killing the arith.sh tests.
      So this unsets it in the script.
      https://gitweb.gentoo.org/repo/gentoo.git/tree/app-shells/ksh/ksh-1.0.9.ebuild
    
    README.md, src/cmd/ksh93/README:
    - Fix typos.
    McDutchie committed Jul 13, 2024
    Configuration menu
    Copy the full SHA
    eea1cb7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    de214f7 View commit details
    Browse the repository at this point in the history
  3. housekeeping

    McDutchie committed Jul 13, 2024
    Configuration menu
    Copy the full SHA
    a10349c View commit details
    Browse the repository at this point in the history