~freddie-akeroyd/epics-base:bit_operations

Last commit made on 2020-02-17
Get this branch:
git clone -b bit_operations https://git.launchpad.net/~freddie-akeroyd/epics-base
Only Freddie Akeroyd can upload to this branch. If you are Freddie Akeroyd please log in for upload directions.

Branch merges

Branch information

Name:
bit_operations
Repository:
lp:~freddie-akeroyd/epics-base

Recent commits

3944b32... by Freddie Akeroyd

Add back in optimisation disable

a0667a1... by Freddie Akeroyd

Excluded x64 tests now need to be excluded on x86 too

f2b4c41... by Freddie Akeroyd

Fix doc typo

8250339... by Freddie Akeroyd

Update record pod documentation

8035935... by Freddie Akeroyd

Remove redundant left logical shift

bfae080... by Freddie Akeroyd

Merge branch '3.15' of git+ssh://git.launchpad.net/epics-base into bit_operations

6ae3f56... by mdavidsaver

Merge remote-tracking branch 'lp-konrad/fix-crash-dbloadrecords-after-iocinit' into 3.15

* lp-konrad/fix-crash-dbloadrecords-after-iocinit:
  Fix mingw cross-build
  Use accessor in iocInit
  Fix segfault when calling dbLoadRecords after iocInit

4844fbb... by Bryan Robert Tester <email address hidden>

moved listen into rsrv_grab_tcp to allow retry if failed

Fixes race condition with multiple IOCs starting simultaneously.

983937a... by Gabriel Fedel <email address hidden>

Fix event record device support with constant INP

This fix apply to event record device with constant INP.
Now when the event record is proccessed the associated records with the
same SCAN setup get triggered correctly, it is not more necessary to set
VAL on event record.

Fixes lp: #1829770

6867f97... by Freddie Akeroyd

Fix bit operations failures on VS2019 32bit

Working with Dirk Zimoch @dirk.zimoch, fixed various issues
with bit operations on VS2019 32bit. These seem to relate to
handling bit 31 of a 32 bit number.

As EPICS << is an arithmetic bit shift, following Java we
have added <<< and >>> operators for logical shifts

Though it is on a different architecture, this looks like
a similar issue to LP: #1838792