summary refs log tree commit diff stats
path: root/tests/threads
Commit message (Expand)AuthorAgeFilesLines
* the parser finally parses 'echo {1,2}' as it shouldAndreas Rumpf2017-09-302-2/+2
* Fixes #4719. (#5585)Eugene Kabanov2017-03-232-0/+58
* Update testament to include all tests from tests/threads category. (#5576)Eugene Kabanov2017-03-203-0/+3
* removed onThreadCreation; onThreadDestruction is now thread localAraq2017-02-261-7/+4
* added a testcase for getThreadIdAraq2017-01-311-0/+5
* added test case; threadex example crashes nowAraq2017-01-301-0/+25
* onThreadDestruction feature added to Nim's threading modelAndreas Rumpf2017-01-241-1/+6
* added system.onThreadCreation feature for safe thread local storage initializ...Andreas Rumpf2017-01-181-0/+22
* moved random procs from math to its own module (breaking change)Andreas Rumpf2016-05-301-1/+1
* Consistently use Channel instead of TChanneldef2016-02-252-3/+3
* Fix a few deprecation warningsdef2016-01-255-5/+5
* tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-046-8/+8
* fixes #1816Araq2015-01-021-0/+35
* further adaptationsAraq2014-08-293-3/+3
* renamed babelcmd to nimblecmd; config files are now nim.cfg; other renamingsAraq2014-08-291-0/+0
* asynchttpserver compiles again; made some tests greenAraq2014-08-132-4/+4
* removed flawed thread analysis passAraq2014-04-202-54/+3
* Tester now appreciates the test target. Modified 'cmd' in specs.Dominik Picheta2014-04-164-4/+4
* made some tests greenAraq2014-03-271-1/+3
* fix #931 and few more testsZahary Karadjov2014-02-181-0/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-164-0/+0
* added tactors2 testAraq2012-09-211-0/+25
* fixes #71; sorry about the polling implementationAraq2011-12-051-0/+19
* fixes 70Araq2011-12-041-4/+4
* deprecated endOfFile and readLineAraq2011-11-251-4/+4
* fixed bug that kept tls emulation from workingAraq2011-11-251-16/+15
* bugfix: 'when' sections in generic objects now work, so TThread[void] compilesAraq2011-11-201-1/+1
* tester: threading tests addedAraq2011-11-193-2/+59
* bugfix: fixed memory leaks in osproc moduleAraq2011-11-183-2/+18
* locks now in their own core moduleAraq2011-08-202-6/+0
* first steps to explicit channels for thread communication; added mainThreadIdAraq2011-07-161-5/+3
* preparations for 0.8.12Araq2011-07-104-0/+167
0'>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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596