Ignore:
Timestamp:
Jan 21, 2018, 12:10:09 AM (6 years ago)
Author:
coas-nagasima
Message:

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • EcnlProtoTool/trunk/asp3_dcre/utils/gentest.rb

    r321 r331  
    124124    when /^OVR$/
    125125      @count_var = "overrun_count"
     126    when /^ISR([0-9]*)$/
     127      @count_var = "isr#{$1}_count"
     128    when /^INTHDR([0-9]*)$/
     129      @count_var = "inthdr#{$1}_count"
    126130    when /^CPUEXC([0-9]*)$/
    127131      @count_var = "cpuexc#{$1}_count"
     
    187191      print("\nvoid\n")
    188192      print("overrun_handler(ID tskid, intptr_t exinf)\n")
     193    when /^ISR([0-9]*)$/
     194      print("\nvoid\n")
     195      print("isr#{$1}(intptr_t exinf)\n")
     196    when /^INTHDR([0-9]*)$/
     197      print("\nvoid\n")
     198      print("inthdr#{$1}_handler(void)\n")
    189199    when /^CPUEXC([0-9]*)$/
    190200      print("\nvoid\n")
Note: See TracChangeset for help on using the changeset viewer.