clearhealth 0.1 (CHMobile For iPhone branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News clearhealth 0.1 (CHMobile For iPhone branch)
# 1  
Old 04-15-2008
clearhealth 0.1 (CHMobile For iPhone branch)

Image ClearHealth is a practice management system and EMR. It takes DNA from the FreeMED and OpenEMR projects, is based on the smarty templating engine, and uses the FreeB2 medical billing engine. It includes support for medications, SOAP data entry, clinical reporting, e-prescribing, and much more. It includes support for the iPhone and iPod touch. License: GNU Lesser General Public License (LGPL) Changes:
This release defaults to using the demo.clear-health.com site. This can be changed through the /Applications/CHMobile.app/Connection.plist file. The schedule tab now expects "simple_provider_report". The Labs module was enabled. Some known issues remain: selecting the Transcription or Pictures button crashes the application, and sections load slowly as each button completely reinitializes that section. The icons are currently hideous, too big, and strange.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. What is on Your Mind?

Nuclear Elephant iPhone Wipe making your iPhone Safer for Resale

For those with the iPhones here might read up how to wipe your personal data off the phone before reselling or trade-in. ;) source: Nuclear Elephant: iPhone Wipe June 1, 2008: Making your iPhone Safe for Resale Since my posts regarding the iPhone restore mode being insufficient for wiping... (0 Replies)
Discussion started by: sparcguy
0 Replies
Login or Register to Ask a Question
UTRACE_SET_EVENTS(9)						  utrace core API					      UTRACE_SET_EVENTS(9)

NAME
utrace_set_events - choose which event reports a tracing engine gets SYNOPSIS
int utrace_set_events(struct task_struct * target, struct utrace_engine * engine, unsigned long events); ARGUMENTS
target thread to affect engine attached engine to affect events new event mask DESCRIPTION
This changes the set of events for which engine wants callbacks made. This fails with -EALREADY and does nothing if you try to clear UTRACE_EVENT(DEATH) when the report_death callback may already have begun, if you try to clear UTRACE_EVENT(REAP) when the report_reap callback may already have begun, or if you try to newly set UTRACE_EVENT(DEATH) or UTRACE_EVENT(QUIESCE) when target is already dead or dying. This can fail with -ESRCH when target has already been detached, including forcible detach on reaping. If target was stopped before the call, then after a successful call, no event callbacks not requested in events will be made; if UTRACE_EVENT(QUIESCE) is included in events, then a report_quiesce callback will be made when target resumes. If target was not stopped and events excludes some bits that were set before, this can return -EINPROGRESS to indicate that target may have been making some callback to engine. When this returns zero, you can be sure that no event callbacks you've disabled in events can be made. If events only sets new bits that were not set before on engine, then -EINPROGRESS will never be returned. To synchronize after an -EINPROGRESS return, see utrace_barrier. When target is current, -EINPROGRESS is not returned. But note that a newly-created engine will not receive any callbacks related to an event notification already in progress. This call enables events callbacks to be made as soon as engine becomes eligible for any callbacks, see utrace_attach_task. These rules provide for coherent synchronization based on UTRACE_STOP, even when SIGKILL is breaking its normal simple rules. Kernel Hackers Manual 2.6. July 2010 UTRACE_SET_EVENTS(9)