spinhawk icon indicating copy to clipboard operation
spinhawk copied to clipboard

spinhawk is the repository for the production-quality version (release 3.xx) of the Hercules mainframe virtualization platform

Results 35 spinhawk issues
Sort by recently updated
recently updated
newest added

Autoconf falsely detects an "armv7l" CPU on Cortex-A53 machines like several Raspberry Pi 3 models. This change works around the issue by correcting the host_cpu in configure.ac. See also -...

The CTCE_Recovery routine, also used by command DEVINIT processing, could cause a Hercules crash. This is now fixed. Additionally, cosmetic changes were made in order to minimize diff changes when...

gcc 10.2 warns about switch cases that can fall through without explicitly allowing it to fall through. In ckddasd.c, line 1461 I think gcc has found a bug, because all...

(Originally found by Joe Monk) The ethertype value defined for a RARP frame is 0x0835. ``` #define ETH_TYPE_IP 0x0800 #define ETH_TYPE_ARP 0x0806 #define ETH_TYPE_RARP 0x0835 #define ETH_TYPE_SNA 0x80D5 ``` The...

Put in a pull request to facilitate getting CPU status out via http. This is part of a project to make it possible to write a separate program to do...

ctcadpt.c:2240:20: warning: logical 'and' of mutually exclusive tests is always false [-Wlogical-op] Source code is if( (argc < 3) && (argc > 5) ) Maybe better code: if( (argc <...

general2.c:2308:28: warning: logical 'and' of mutually exclusive tests is always false [-Wlogical-op] Source code is if(utf16[2] < 0xdc && utf16[2] > 0xdf) maybe better code: if(utf16[2] < 0xdc || utf16[2]...

Hercules V3.13 does not replace strings in *.rc files. I hope this is a bug and not an intended feature. Attached are three test files that work to demonstrate the...