Changeset 170418a in rtems-docs
- Timestamp:
- 05/18/16 17:47:42 (7 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 489740f
- Parents:
- bc37517
- Files:
-
- 7 edited
- 8 moved
Legend:
- Unmodified
- Added
- Removed
-
c_user/overview.rst
rbc37517 r170418a 121 121 localized to the low level device drivers. 122 122 123 .. figure:: rtemsarc.png123 .. figure:: ../images/c_user/rtemsarc.png 124 124 :width: 488 125 125 :height: 100px … … 147 147 following figure illustrates this organization: 148 148 149 .. figure:: rtemspie.png149 .. figure:: ../images/c_user/rtemspie.png 150 150 :width: 70% 151 151 :align: center -
c_user/scheduling_concepts.rst
rbc37517 r170418a 328 328 other system resources. 329 329 330 .. figure:: states.png330 .. figure:: ../images/c_user/states.png 331 331 :width: 70% 332 332 :align: center -
c_user/semaphore_manager.rst
rbc37517 r170418a 242 242 following tree figure illustrates the valid combinations. 243 243 244 .. figure:: semaphore_attributes.png244 .. figure:: ../images/c_user/semaphore_attributes.png 245 245 :width: 90% 246 246 :align: center -
common/waf.py
rbc37517 r170418a 120 120 121 121 def html_resources(ctx): 122 for dir in ["_static", "_templates"]:123 files = ctx.path.parent.find_node("common").ant_glob("%s/*" % dir )124 ctx.path.get_bld().make_node(dir ).mkdir() # dirs122 for dir_name in ["_static", "_templates"]: 123 files = ctx.path.parent.find_node("common").ant_glob("%s/*" % dir_name) 124 ctx.path.get_bld().make_node(dir_name).mkdir() # dirs 125 125 126 126 ctx( … … 128 128 is_copy = True, 129 129 source = files, 130 target = [ctx.bldnode.find_node(dir ).get_bld().make_node(x.name) for x in files]130 target = [ctx.bldnode.find_node(dir_name).get_bld().make_node(x.name) for x in files] 131 131 ) 132 133 # copy images 134 # ctx.path.get_bld().make_node("images").mkdir() 135 # files = ctx.path.parent.ant_glob("images/**") 136 # ctx( 137 # features = "subst", 138 # is_copy = True, 139 # source = files, 140 # target = [x.srcpath().replace("../", "") for x in files] 141 # ) 142 143 132 144 133 145 -
networking/dec_21140.rst
rbc37517 r170418a 60 60 61 61 62 .. image:: images/PCIreg.jpg62 .. image:: ../images/networking/PCIreg.jpg 63 63 64 64 … … 124 124 125 125 126 .. image:: images/ recvbd.jpg126 .. image:: images/networking/recvbd.jpg 127 127 128 128 -
networking/network_task_structure.rst
rbc37517 r170418a 10 10 networking application is shown in the following figure: 11 11 12 .. image:: images/networkflow.jpg12 .. image:: ../images/networking/networkflow.jpg 13 13 14 14 -
user/start/depend.rst
rbc37517 r170418a 244 244 Open a 64bit MSYS shell from the Start Menu: 245 245 246 .. figure:: msys2-minw64-start-menu.png246 .. figure:: ../../images/msys2-minw64-start-menu.png 247 247 :width: 50% 248 248 :align: center
Note: See TracChangeset
for help on using the changeset viewer.