Skip to content

Commit

Permalink
CELIX-368: Updates some small issues in the documentation of dep man
Browse files Browse the repository at this point in the history
  • Loading branch information
pnoltes committed Jul 21, 2016
1 parent 8160dec commit 8778ce5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions dependency_manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,11 @@ celix_status_t dm_destroy(void * userData, bundle_context_pt context, dm_depende
return CELIX_SUCCESS;
}
```
### References
TODOS:
For more information examples please see
1. add cmp callbacks
1. add interface
1. add service dependency and callbacks
### Example
For a more complete overview what can be done with the dependency manager please look at the dm_example example. Should be located at 'examples/dm_example'.
- [Best practices](../documents/best_practices/README.md): A introduction how to work with services using the dependency manager
- [The Dependency Manager API](public/include): The dependency manager header files
- [Best practice example](../examples/best_practice_example): A best practice example (also refered to in the Best practices documentation
- [Dm example](../examples/dm_example): A DM example project.
2 changes: 1 addition & 1 deletion documents/best_practices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Changes considered backwards compatible which does not extend the functionaility

## Components

Component should use the ADT principle (see [http://lmgtfy.com/?q=ADT+in+C](http://lmgtfy.com/?q=ADT+in+C)).
Component should use the ADT principle (see [ADT in C](http://inst.eecs.berkeley.edu/~selfpace/studyguide/9C.sg/Output/ADTs.in.C.html)).

Components should have a `<cmpName>_create` and `<cmpName>_destroy` function.
Components can have a `<cmpName>_start` and `<cmpName>_stop` function to start/stop threads or invoke functionality needed a fully created component.
Expand Down

0 comments on commit 8778ce5

Please sign in to comment.