summary refs log tree commit diff stats
path: root/lib/pure/concurrency/threadpool.nim
Commit message (Expand)AuthorAgeFilesLines
* minor improvement to the barrier implementationAraq2014-12-091-1/+3
* renamed CondVar to SemaphoreAraq2014-11-101-26/+26
* fixed the deadlock that happens when stress testing ToFreeQueueAraq2014-11-081-25/+30
* fixes exhaustion bug and missing GC_ref code generationAraq2014-11-071-5/+4
* broken attempt to fix queue exhaustionAraq2014-11-071-21/+29
* fixes a race condition that caused '^' to hangAraq2014-10-051-4/+5
* made tests greenAraq2014-09-221-2/+2
* Nimrod renamed to NimAraq2014-08-281-1/+1
* big renameAraq2014-08-271-2/+2
* nice error messageAraq2014-08-081-0/+3
* setMaxPoolSize improvementsAraq2014-08-081-5/+10
* some changesAraq2014-06-091-9/+9
* big rename: Promise -> FlowVarAraq2014-06-061-62/+62
* added 'fence' instructions to the barrierAraq2014-06-061-9/+16
* Promises are now refsAraq2014-06-051-57/+67
* barrier more efficientAraq2014-06-031-19/+25
* hopefully faster barrier implementationAraq2014-06-021-6/+14
* bugfix: codegen for promisesAraq2014-06-021-1/+1
* bugfix: regionized pointers in a generic context; renamed 'Future' to 'Promise'Araq2014-05-251-55/+79
* progress with futuresAraq2014-05-231-18/+15
* 'parallel' statement almost workingAraq2014-05-221-0/+112
* progress for the 'parallel' statementAraq2014-05-141-11/+15
* initial non-compiling version of 'parallel'Araq2014-05-121-0/+210
ef='#n284'>284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427