Last 30 days
-
-
r188
(A Limpet that listens for KBUS messages...
) committed by t...@tibsnjoan.co.uk
- A Limpet that listens for KBUS messages...
A Limpet that listens for KBUS messages...
-
-
-
r186
(Initial commit of some sandbox stuff.
) committed by t...@tibsnjoan.co.uk
- Initial commit of some sandbox stuff.
Initial commit of some sandbox stuff.
-
-
r184
(Move the (by now) traditional temporary work file from the
k...) committed by t...@tibsnjoan.co.uk
- Move the (by now) traditional temporary work file from the
kernel module directory.
Move the (by now) traditional temporary work file from the
kernel module directory.
-
r183
(Move the Python code into its own directory - it is stronly ...) committed by t...@tibsnjoan.co.uk
- Move the Python code into its own directory - it is stronly arguable
that it no longer made sense to keep it in the kernel module's directory.
Move the Python code into its own directory - it is stronly arguable
that it no longer made sense to keep it in the kernel module's directory.
-
r182
(Move the Python code around a bit, to make a proper package....) committed by t...@tibsnjoan.co.uk
- Move the Python code around a bit, to make a proper package.
The unit tests still work - in the directory containing the
package, one can do::
nosetests kbus -d --doctest-tests --with-doctest
Move the Python code around a bit, to make a proper package.
The unit tests still work - in the directory containing the
package, one can do::
nosetests kbus -d --doctest-tests --with-doctest
-
r181
(Release 0.1 before I start development on user-space daemons...) committed by t...@tibsnjoan.co.uk
- Release 0.1 before I start development on user-space daemons.
Release 0.1 before I start development on user-space daemons.
-
r180
(Tag the sources before I start work on user-space KBUS daemo...) committed by t...@tibsnjoan.co.uk
- Tag the sources before I start work on user-space KBUS daemons, and consequent
support for peer-to-peer inter-machine comminications. This will also involve
reorganisation of the KBUS Python code.
Tag the sources before I start work on user-space KBUS daemons, and consequent
support for peer-to-peer inter-machine comminications. This will also involve
reorganisation of the KBUS Python code.
-
-
r179
(Remove some redundant return values - issue 15.
And remove ...) committed by tony.ibbs
- Remove some redundant return values - issue 15 .
And remove a redundant comment.
Remove some redundant return values - issue 15 .
And remove a redundant comment.
Older
-
-
-
r178
(Fix errors detected when building an ASTB:
* Use gcc instea...) committed by tony.ibbs
- Fix errors detected when building an ASTB:
* Use gcc instead of ld, because (a) gcc can act as the linker,
and (b) it knows where to find libc when cross-compiling, which
ld does not.
* It's '-soname=<name>', not '-soname <name>'.
Fix errors detected when building an ASTB:
* Use gcc instead of ld, because (a) gcc can act as the linker,
and (b) it knows where to find libc when cross-compiling, which
ld does not.
* It's '-soname=<name>', not '-soname <name>'.
-
-
-
-
-
-
r177
(The /proc/kbus files should not now be limited to a single p...) committed by tony.ibbs
- The /proc/kbus files should not now be limited to a single page in length
The /proc/kbus files should not now be limited to a single page in length
-
r176
(As part of investigating issue 13, add the process PID to th...) committed by tony.ibbs
- As part of investigating issue 13, add the process PID to the information
reported in /proc/kbus/bindings
As part of investigating issue 13, add the process PID to the information
reported in /proc/kbus/bindings
-
-
-
r175
(In pursuit of issue 9, add a call to the C library.
) committed by tony.ibbs
- In pursuit of issue 9 , add a call to the C library.
In pursuit of issue 9 , add a call to the C library.
-
-
r174
(Update documentation, pursuant to issue 9.
) committed by tony.ibbs
- Update documentation, pursuant to issue 9 .
Update documentation, pursuant to issue 9 .
-
r173
(Finishing issue 9: array concerned is now an array of pointe...) committed by tony.ibbs
- Finishing issue 9 : array concerned is now an array of pointers (saving some considerable space)
Finishing issue 9 : array concerned is now an array of pointers (saving some considerable space)
-
r172
(Address issue 9 - allow dynamic extension of the number of K...) committed by tony.ibbs
- Address issue 9 - allow dynamic extension of the number of KBUS devices.
Note: this is a first-pass solution, and there is still work to be done,
specifically making the KBUS device array store pointers-to-devices
rather than being an array of devices (see the code).
Address issue 9 - allow dynamic extension of the number of KBUS devices.
Note: this is a first-pass solution, and there is still work to be done,
specifically making the KBUS device array store pointers-to-devices
rather than being an array of devices (see the code).
-
-
-
-
-
-
-
-
r171
(Addressing issue 7 - make it clearer what is going on with "...) committed by tony.ibbs
- Addressing issue 7 - make it clearer what is going on with "entire"
message creation functions in the C API, and make the length limit
a bit more sensible.
Addressing issue 7 - make it clearer what is going on with "entire"
message creation functions in the C API, and make the length limit
a bit more sensible.
-
-
r170
(Make the library and test utility support cross compilation
) committed by tony.ibbs
- Make the library and test utility support cross compilation
Make the library and test utility support cross compilation
-
-
r169
(In partial satisfaction of issue 4, make verbose kernel mess...) committed by tony.ibbs
- In partial satisfaction of issue 4, make verbose kernel messages
switchable at runtime.
In partial satisfaction of issue 4, make verbose kernel messages
switchable at runtime.
-
-
r168
(This fixes issue 6 (or, at least, the unit test I derived fo...) committed by tony.ibbs
- This fixes issue 6 (or, at least, the unit test I derived for it).
This fixes issue 6 (or, at least, the unit test I derived for it).
-
-
r167
(Move the "announcement" messages for the externally "visible...) committed by tony.ibbs
- Move the "announcement" messages for the externally "visible" interfaces
(kbus_write, etc.) so that the printk is *after* the semaphore has been
acquired. This means we'll lose debug if the semaphore isn't gotten, but
when two processes are both calling KBUS, the "gone into the function"
message will always be associated with the "and this is what I did there"
messages - something that wasn't guaranteed before, and which could cause
some problems in trying to understand the debugging output.
Move the "announcement" messages for the externally "visible" interfaces
(kbus_write, etc.) so that the printk is *after* the semaphore has been
acquired. This means we'll lose debug if the semaphore isn't gotten, but
when two processes are both calling KBUS, the "gone into the function"
message will always be associated with the "and this is what I did there"
messages - something that wasn't guaranteed before, and which could cause
some problems in trying to understand the debugging output.
-
r166
(kmsg can now take an argument to tell it which bus to listen...) committed by rrw@kynesim.co.uk
- kmsg can now take an argument to tell it which bus to listen on.
kmsg can now take an argument to tell it which bus to listen on.
-
r165
(In the kbus kernel module Makefile, don't use "?=" when I wa...) committed by tony.ibbs
- In the kbus kernel module Makefile, don't use "?=" when I want to allow
a variable containing whitespace to be considered as unset. Use "ifeq" instead.
In the kbus kernel module Makefile, don't use "?=" when I want to allow
a variable containing whitespace to be considered as unset. Use "ifeq" instead.
-
r164
(Update the kbus.py generated docuentation.
) committed by tony.ibbs
- Update the kbus.py generated docuentation.
Update the kbus.py generated docuentation.
-
r163
(Update the documentation to describe MSGONLYONCE.
) committed by tony.ibbs
- Update the documentation to describe MSGONLYONCE.
Update the documentation to describe MSGONLYONCE.
|