- The PCRE flavour of RegEx is used here.
- Append the
imodifier to the end of the regex to make any pattern case-insensitive.
| Purpose | Description | RegEx | Example |
| rtl-sdr build notes for OSX | |
| using macports http://www.macports.org/ | |
| see http://sdr.osmocom.org/trac/wiki/rtl-sdr | |
| sudo port install cmake | |
| sudo port install libusb | |
| sudo port install pkgconfig | |
| sudo port install sox # for easy audio | |
| git clone git://git.osmocom.org/rtl-sdr.git | |
| cd rtl-sdr/ |
| go func() { | |
| for { | |
| err = rmq.Stream(cancelCtx) | |
| if errors.Is(err, rabbitmq.ErrDisconnected) { | |
| continue | |
| } | |
| break | |
| } | |
| }() |
UpgradableRWMutex is an enhanced version of the standard sync.RWMutex. It has the all methods sync.RWMutex with exact same semantics. It gives more methods to give upgradable-read feature.
The new semantics for upgradable-read are as follows: