~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to uspace/app/bdsh/cmds/modules/modules.h

  • Committer: Vojtech Horky
  • Date: 2012-05-23 12:03:26 UTC
  • mfrom: (1443.1.19 misc)
  • mto: This revision was merged to the branch mainline in revision 1479.
  • Revision ID: vojtechhorky@users.sourceforge.net-20120523120326-jv50stjymxmh598s
Merge GSOC-originated patches 

Merge from lp:~vojtech-horky/helenos/misc.

The merge includes:
 * Switching to previous directory with `cd -' in Bdsh
 * Interactive mode for cp module in Bdsh
 * Implementation of sleep command
 * printf and echo for Bdsh
 * Rewrite of the mkdir module
 * Ctrl-arrow jumps over words in the editor
 * The scripts work with Python 3

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
#include "mount/entry.h"
61
61
#include "unmount/entry.h"
62
62
#include "kcon/entry.h"
 
63
#include "printf/entry.h"
 
64
#include "echo/entry.h"
63
65
 
64
66
/* Each .def function fills the module_t struct with the individual name, entry
65
67
 * point, help entry point, etc. You can use config.h to control what modules
81
83
#include "mount/mount_def.h"
82
84
#include "unmount/unmount_def.h"
83
85
#include "kcon/kcon_def.h"
 
86
#include "printf/printf_def.h"
 
87
#include "echo/echo_def.h"
84
88
 
85
89
        {NULL, NULL, NULL, NULL}
86
90
};