From 115405d5e51d4fa0260cf5344ea6668e773c5b2b Mon Sep 17 00:00:00 2001 From: James Cameron Date: Mon, 08 Mar 2010 22:29:30 +0000 Subject: Removes the use of O_SYNC on logs #1656 With O_SYNC on open of log files, on systems with slow filesystem random write performance, there is random activity startup time. --- diff --git a/src/sugar/activity/activityfactory.py b/src/sugar/activity/activityfactory.py index e218a7c..2a6e4a9 100644 --- a/src/sugar/activity/activityfactory.py +++ b/src/sugar/activity/activityfactory.py @@ -153,8 +153,7 @@ def open_log_file(activity): while True: path = env.get_logs_path('%s-%s.log' % (activity.get_bundle_id(), i)) try: - fd = os.open(path, os.O_EXCL | os.O_CREAT \ - | os.O_SYNC | os.O_WRONLY, 0644) + fd = os.open(path, os.O_EXCL | os.O_CREAT | os.O_WRONLY, 0644) f = os.fdopen(fd, 'w', 0) return (path, f) except OSError, e: -- cgit v0.9.1