Changing to the correct gh id for me in the Publish.scala

This commit is contained in:
Viktor Klang 2012-05-11 16:19:46 +02:00
parent fcc8f4cad6
commit 0eb5c503f5
2 changed files with 3 additions and 4 deletions

View file

@ -215,10 +215,9 @@ abstract class MessageDispatcher(val prerequisites: DispatcherPrerequisites) ext
@volatile private[this] var _shutdownScheduleDoNotCallMeDirectly: Int = _ // DO NOT TOUCH!
@tailrec private final def addInhabitants(add: Long): Long = {
val u = Unsafe.instance
val c = u.getLongVolatile(this, inhabitantsOffset)
val c = inhabitants
val r = c + add
if (u.compareAndSwapLong(this, inhabitantsOffset, c, r)) r else addInhabitants(add)
if (Unsafe.instance.compareAndSwapLong(this, inhabitantsOffset, c, r)) r else addInhabitants(add)
}
final def inhabitants: Long = Unsafe.instance.getLongVolatile(this, inhabitantsOffset)

View file

@ -42,7 +42,7 @@ object Publish {
<connection>scm:git:git@github.com:akka/akka.git</connection>
</scm>) ++ makeDevelopersXml(Map(
"jboner" -> "Jonas Boner",
"legendofklang" -> "Viktor Klang",
"viktorklang" -> "Viktor Klang",
"rkuhn" -> "Roland Kuhn",
"pvlugter" -> "Peter Vlugter"
// TODO - More than the names in the last 10 commits