Add note to LICENSE files regarding AbstractBoundedNodeQueue origin

Fixes #425
This commit is contained in:
Johannes Rudolph 2023-06-20 12:45:08 +02:00 committed by Matthew de Detrich
parent 60279703a4
commit 37771f9abf
2 changed files with 14 additions and 0 deletions

View file

@ -235,6 +235,13 @@ in `org.apache.pekko.util.UUIDComparator.scala` which was released under an Apac
---------------
pekko-actor contains code in `org.apache.pekko.dispatch.AbstractBoundedNodeQueue.java` which was based on
code from actors <https://github.com/plokhotnyuk/actors> which was released under the Apache 2.0 license, and
code from https://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue which
was released under the Simplified BSD license.
---------------
pekko-cluster contains VectorClock.scala which is derived from code written
by Coda Hale <https://github.com/codahale/vlock>.
He has agreed to allow us to use this code under an Apache 2.0 license

View file

@ -232,3 +232,10 @@ Copyright 2014 The Netty Project
pekko-actor contains code from java-uuid-generator <https://github.com/cowtowncoder/java-uuid-generator>
in `org.apache.pekko.util.UUIDComparator.scala` which was released under an Apache 2.0 license.
---------------
pekko-actor contains code in `org.apache.pekko.dispatch.AbstractBoundedNodeQueue.java` which was based on
code from actors <https://github.com/plokhotnyuk/actors> which was released under the Apache 2.0 license, and
code from https://www.1024cores.net/home/lock-free-algorithms/queues/non-intrusive-mpsc-node-based-queue which
was released under the Simplified BSD license.