summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-05-23manage fiber status (create|running|resumed|terminated)Yukihiro "Matz" Matsumoto
2013-05-23should have protected the return value from GC, even when the method is ↵Yukihiro "Matz" Matsumoto
defined in Ruby; close #1263
2013-05-22garbage collect context (fiber) properlyYukihiro "Matz" Matsumoto
2013-05-21remove unnecessary assignmentYukihiro "Matz" Matsumoto
2013-05-21error in initializing callinfo stack in cipush(); close #1261Yukihiro "Matz" Matsumoto
2013-05-20Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-05-20Merge pull request #1260 from carsonmcdonald/rewordtypoYukihiro "Matz" Matsumoto
Change Fibder to Fiber
2013-05-20avoid unnecessary pool/syms restorationYukihiro "Matz" Matsumoto
2013-05-20Change Fibder to Fiber and a couple other wording issuesCarson McDonald
2013-05-20update error messageYukihiro "Matz" Matsumoto
2013-05-20update Fiber.new docYukihiro "Matz" Matsumoto
2013-05-20primary mruby fiber implementationYukihiro "Matz" Matsumoto
2013-05-19Merge pull request #1259 from carsonmcdonald/typeofixfortmatYukihiro "Matz" Matsumoto
Change fortmat to format.
2013-05-19Change fortmat to format.Carson McDonald
2013-05-18Merge pull request #1258 from luislavena/mrbc-dump-binaryYukihiro "Matz" Matsumoto
mrbc: use binary mode on outfile
2013-05-18mrbc: use binary mode on outfileLuis Lavena
This solves the problem of incorrect bytecode generated by mrbc for single files on Windows platform (which is by default text-mode)
2013-05-18Merge pull request #1257 from schmurfy/cleanupYukihiro "Matz" Matsumoto
removed unused variables / assigns never used
2013-05-18removed unused variables / assigns never usedJulien Ammous
2013-05-18indentation fixYukihiro "Matz" Matsumoto
2013-05-18remove unused local variableYukihiro "Matz" Matsumoto
2013-05-18Merge branch 'master' of https://github.com/Archytaus/mruby into ↵Yukihiro "Matz" Matsumoto
Archytaus-master
2013-05-18Merge remote-tracking branch 'origin/master'Ryan Scott
2013-05-18Cleanup of mruby_objectspace.c and removed the unneccessary README for ↵Ryan Scott
mruby_objectspace.
2013-05-18Added mruby-objectspace to the detault gembox.Ryan Scott
2013-05-18Fixed the each object callback to be more consistent with other callbacks.Ryan Scott
2013-05-18Changed the counting so that only objects that are alive are added to the ↵Ryan Scott
object counts.
2013-05-17Minor formatting change.Ryan Scott
2013-05-17Changed the each_object callback so that a pointer is passed for the object, ↵Ryan Scott
instead of the struct.
2013-05-17Removed debug outputRyan Scott
2013-05-17Changed the object_count so that it only iterates over the RBasic object, ↵Ryan Scott
not the full RVALUE known by the GC
2013-05-17First implementation of ObjectSpace moved outside of gc.cRyan Scott
2013-05-16Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-05-15Merge pull request #1255 from carsonmcdonald/mrbcoutwarnfixYukihiro "Matz" Matsumoto
Fix compiler warning by exiting if wfp isn't set
2013-05-15Fix compiler warning by exiting if wfp isn't setCarson McDonald
2013-05-15avoid unnecessary copy of context->filenameYukihiro "Matz" Matsumoto
2013-05-14mrbc to take multiple files, preserving debug information if -g given; close ↵Yukihiro "Matz" Matsumoto
#1243
2013-05-14Merge pull request #1252 from carsonmcdonald/fixfilenamesYukihiro "Matz" Matsumoto
Fix for issue 1243
2013-05-14Merge pull request #1253 from skandhas/pr-add-comments-for-array-extYukihiro "Matz" Matsumoto
add comments for mruby-array-ext
2013-05-14add comments for mruby-array-extskandhas
2013-05-13Fix off by one issueCarson McDonald
2013-05-13Add example of modifying mrbc options to add debug infoCarson McDonald
2013-05-13Allow mrbc command options to be changedCarson McDonald
2013-05-13Fix early free of irep->filenameCarson McDonald
2013-05-13forgot to add src/backtrace.cYukihiro "Matz" Matsumoto
2013-05-13show a backtrace when when an error occurs on gem load; close #1243Yukihiro "Matz" Matsumoto
2013-05-13move mruby's showcallinfo into the coreYukihiro "Matz" Matsumoto
2013-05-12Change in formatting for os_count_objects to be consistent with other functions.Ryan Scott
2013-05-12ObjectSpace.count_objects was incorrectly checking if an object was already ↵Ryan Scott
freed. Amended the count_objects test to ensure the correct distinction
2013-05-12Merge branch 'master' of git://github.com/mruby/mrubyRyan Scott
2013-05-12Implemented ObjectSpace.count_objects to count the number of allocated ↵Ryan Scott
objects for each type